about summary refs log tree commit diff
path: root/pkgs/tools/security/tpm-tools
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/tpm-tools
parente17781f8b1a10e40f4ec110e01610c8afaae4c38 (diff)
downloadnixlib-d206122ade6ddf6c3a4836e6d57f46c6c898fa9c.tar
nixlib-d206122ade6ddf6c3a4836e6d57f46c6c898fa9c.tar.gz
nixlib-d206122ade6ddf6c3a4836e6d57f46c6c898fa9c.tar.bz2
nixlib-d206122ade6ddf6c3a4836e6d57f46c6c898fa9c.tar.lz
nixlib-d206122ade6ddf6c3a4836e6d57f46c6c898fa9c.tar.xz
nixlib-d206122ade6ddf6c3a4836e6d57f46c6c898fa9c.tar.zst
nixlib-d206122ade6ddf6c3a4836e6d57f46c6c898fa9c.zip
Add package: opencryptoki
Make tpm-tools depend on opencryptoki as well.
Diffstat (limited to 'pkgs/tools/security/tpm-tools')
-rw-r--r--pkgs/tools/security/tpm-tools/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/tpm-tools/default.nix b/pkgs/tools/security/tpm-tools/default.nix
index 6e7ff75a6a48..a17bff9e32c8 100644
--- a/pkgs/tools/security/tpm-tools/default.nix
+++ b/pkgs/tools/security/tpm-tools/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, trousers, openssl }:
+{ stdenv, fetchurl, trousers, openssl, opencryptoki }:
 
 let
   version = "1.3.8";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
     sha256 = "10za1gi89vi9m2lmm7jfzs281h55x1sbbm2bdgdh692ljpq4zsv6";
   };
 
-  buildInputs = [ trousers openssl ];
+  buildInputs = [ trousers openssl opencryptoki ];
 
   meta = with stdenv.lib; {
     description = "Management tools for TPM hardware";