nixpkgs/pkgs/tools/security/softhsm/default.nix

32 lines
766 B
Nix
Raw Normal View History

2016-04-18 01:36:47 -07:00
{ stdenv, fetchurl, botan }:
stdenv.mkDerivation rec {
name = "softhsm-${version}";
version = "2.1.0";
src = fetchurl {
url = "https://dist.opendnssec.org/source/${name}.tar.gz";
sha256 = "0399b06f196fbfaebe73b4aeff2e2d65d0dc1901161513d0d6a94f031dcd827e";
};
configureFlags = [
"--with-crypto-backend=botan"
"--with-botan=${botan}"
"--sysconfdir=$out/etc"
"--localstatedir=$out/var"
];
buildInputs = [ botan ];
postInstall = "rm -rf $out/var";
meta = with stdenv.lib; {
2016-04-18 01:36:47 -07:00
homepage = https://www.opendnssec.org/softhsm;
description = "Cryptographic store accessible through a PKCS #11 interface";
license = licenses.bsd2;
maintainers = [ maintainers.leenaars ];
platforms = platforms.linux;
2016-04-18 01:36:47 -07:00
};
}