Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / svrcore / default.nix
blobfbc17a5e7b218e5dde24d17ee4997f0d5ce56dd4
1 { lib, stdenv, fetchurl, pkg-config, nss, nspr }:
3 stdenv.mkDerivation rec {
4   pname = "svrcore";
5   version = "4.0.4";
7   src = fetchurl {
8     url = "mirror://mozilla/directory/svrcore/releases/${version}/src/${pname}-${version}.tar.bz2";
9     sha256 = "0n3alg6bxml8952fb6h0bi0l29farvq21q6k20gy2ba90m3znwj7";
10   };
12   nativeBuildInputs = [ pkg-config ];
13   buildInputs = [ nss nspr ];
15   meta = with lib; {
16     description = "Secure PIN handling using NSS crypto";
17     license = licenses.mpl11;
18     platforms = platforms.all;
19   };