about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/svrcore/default.nix
blob: 628ab7e28ef16bf889cb71862fbebd963c417dcc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, pkgconfig, nss, nspr }:

stdenv.mkDerivation rec {
  pname = "svrcore";
  version = "4.0.4";

  src = fetchurl {
    url = "mirror://mozilla/directory/svrcore/releases/${version}/src/${pname}-${version}.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;
  };
}