nixpkgs/pkgs/development/libraries/svrcore/default.nix
Jörg Thalheim b5c1deca8a
treewide: remove wkennington as maintainer
He prefers to contribute to his own nixpkgs fork triton.
Since he is still marked as maintainer in many packages
this leaves the wrong impression he still maintains those.
2019-01-26 10:05:32 +00:00

21 lines
528 B
Nix

{ stdenv, fetchurl, pkgconfig, nss, nspr }:
stdenv.mkDerivation rec {
name = "svrcore-${version}";
version = "4.0.4";
src = fetchurl {
url = "mirror://mozilla/directory/svrcore/releases/${version}/src/${name}.tar.bz2";
sha256 = "0n3alg6bxml8952fb6h0bi0l29farvq21q6k20gy2ba90m3znwj7";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ nss nspr ];
meta = with stdenv.lib; {
description = "Secure PIN handling using NSS crypto";
license = licenses.mpl11;
platforms = platforms.all;
};
}