mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
libr3: init at 1.3.4
This commit is contained in:
parent
bd616c0cd3
commit
645ac131dd
2 changed files with 34 additions and 0 deletions
32
pkgs/development/libraries/libr3/default.nix
Normal file
32
pkgs/development/libraries/libr3/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, pcre
|
||||
, pkgconfig
|
||||
, check
|
||||
, autoreconfHook
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "r3";
|
||||
version = "1.3.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "c9s";
|
||||
repo = "r3";
|
||||
rev = version;
|
||||
sha256 = "09cixbms817p6nb77wz3rxp0znnac8ybycvsrrzgwlbfn58a3zwl";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
|
||||
buildInputs = [ pcre check ];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
meta = {
|
||||
description = "A high-performance path dispatching library";
|
||||
homepage = https://github.com/c9s/r3;
|
||||
license = [ stdenv.lib.licenses.mit ];
|
||||
};
|
||||
|
||||
}
|
|
@ -3995,6 +3995,8 @@ in
|
|||
|
||||
liboauth = callPackage ../development/libraries/liboauth { };
|
||||
|
||||
libr3 = callPackage ../development/libraries/libr3 { };
|
||||
|
||||
libsidplayfp = callPackage ../development/libraries/libsidplayfp { };
|
||||
|
||||
libsrs2 = callPackage ../development/libraries/libsrs2 { };
|
||||
|
|
Loading…
Reference in a new issue