mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #8631 from ts468/upstream.tpm_luks
tmp-luks: init at version 0.9pre
This commit is contained in:
commit
3ce7eeb270
29
pkgs/tools/security/tpm-luks/default.nix
Normal file
29
pkgs/tools/security/tpm-luks/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchgit, autoreconfHook, gawk, trousers, cryptsetup, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "tpm-luks-${version}";
|
||||
version = "0.9pre";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/shpedoikal/tpm-luks/";
|
||||
rev = "3fa3ea4bbd34b5b02e9271e775a338fa49dc834f";
|
||||
sha256 = "37a56f05ad492d3128b07b3cb9dbf85ba8a0dd791329323fb398eb1026dfc89c";
|
||||
};
|
||||
|
||||
buildInputs = [ autoreconfHook gawk trousers cryptsetup openssl ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
make install DESTDIR=$out
|
||||
mv $out/$out/sbin $out/bin
|
||||
rm -r $out/nix
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "LUKS key storage in TPM NVRAM";
|
||||
homepage = https://github.com/shpedoikal/tpm-luks/;
|
||||
maintainers = [ maintainers.tstrobel ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
@ -3103,6 +3103,8 @@ let
|
||||
|
||||
tpm-tools = callPackage ../tools/security/tpm-tools { };
|
||||
|
||||
tpm-luks = callPackage ../tools/security/tpm-luks { };
|
||||
|
||||
chaps = callPackage ../tools/security/chaps { };
|
||||
|
||||
trace-cmd = callPackage ../os-specific/linux/trace-cmd { };
|
||||
|
Loading…
Reference in New Issue
Block a user