aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/security/opencryptoki
diff options
context:
space:
mode:
authorThomas Strobel <ts468@cam.ac.uk>2014-10-14 00:48:23 +0200
committerThomas Strobel <ts468@cam.ac.uk>2014-10-14 09:03:50 +0200
commitd206122ade6ddf6c3a4836e6d57f46c6c898fa9c (patch)
tree5702bed2b21dad371e17be156c08d5e9cde4bb3e /pkgs/tools/security/opencryptoki
parente17781f8b1a10e40f4ec110e01610c8afaae4c38 (diff)
Add package: opencryptoki
Make tpm-tools depend on opencryptoki as well.
Diffstat (limited to 'pkgs/tools/security/opencryptoki')
-rw-r--r--pkgs/tools/security/opencryptoki/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/tools/security/opencryptoki/default.nix b/pkgs/tools/security/opencryptoki/default.nix
new file mode 100644
index 000000000000..9ea9c2f4892b
--- /dev/null
+++ b/pkgs/tools/security/opencryptoki/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchurl, openssl, trousers, automake, autoconf, libtool, bison, flex }:
+
+stdenv.mkDerivation rec {
+ version = "3.2";
+ name = "opencryptoki-${version}";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/opencryptoki/opencryptoki/v${version}/opencryptoki-v${version}.tgz";
+ sha256 = "06r6zp299vxdspl6k65myzgjv0bihg7kc500v7s4jd3mcrkngd6h";
+ };
+
+ buildInputs = [ automake autoconf libtool openssl trousers bison flex ];
+
+ preConfigure = ''
+ substituteInPlace configure.in --replace "chown" "true"
+ substituteInPlace configure.in --replace "chgrp" "true"
+ sh bootstrap.sh --prefix=$out
+ '';
+
+ configureFlags = [ "--disable-ccatok" "--disable-icatok" ];
+
+ makeFlags = "DESTDIR=$(out)";
+
+ # work around the build script of opencryptoki
+ postInstall = ''
+ cp -r $out/$out/* $out
+ rm -r $out/nix
+ '';
+
+ meta = with stdenv.lib; {
+ description = "PKCS#11 implementation for Linux";
+ homepage = http://opencryptoki.sourceforge.net/;
+ license = licenses.cpl10;
+ maintainers = [ maintainers.tstrobel ];
+ platforms = platforms.unix;
+ };
+}
+