svrcore: Add derivation
This commit is contained in:
parent
744f4b1ece
commit
d01a6f4504
20
pkgs/development/libraries/svrcore/default.nix
Normal file
20
pkgs/development/libraries/svrcore/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, fetchurl, pkgconfig, nss, nspr }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "svrcore-${version}";
|
||||
version = "4.0.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://ftp.mozilla.org/pub/mozilla.org/directory/svrcore/releases/${version}/src/${name}.tar.bz2";
|
||||
sha256 = "0n3alg6bxml8952fb6h0bi0l29farvq21q6k20gy2ba90m3znwj7";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig nss nspr ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Secure PIN handling using NSS crypto";
|
||||
license = licenses.mpl11;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
};
|
||||
}
|
@ -7003,6 +7003,8 @@ let
|
||||
|
||||
sutils = callPackage ../tools/misc/sutils { };
|
||||
|
||||
svrcore = callPackage ../development/libraries/svrcore { };
|
||||
|
||||
sword = callPackage ../development/libraries/sword { };
|
||||
|
||||
szip = callPackage ../development/libraries/szip { };
|
||||
|
Loading…
Reference in New Issue
Block a user