Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
553 B
Nix
31 lines
553 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
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 = [ pkg-config ];
|
|
buildInputs = [
|
|
nss
|
|
nspr
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Secure PIN handling using NSS crypto";
|
|
license = licenses.mpl11;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|