nixpkgs/pkgs/tools/security/tpm-luks/default.nix

31 lines
810 B
Nix
Raw Normal View History

2015-07-04 21:57:59 +00:00
{ stdenv, fetchgit, autoreconfHook, gawk, trousers, cryptsetup, openssl }:
stdenv.mkDerivation rec {
name = "tpm-luks-${version}";
2015-07-11 11:50:24 +00:00
version = "git-2015-07-11";
2015-07-04 21:57:59 +00:00
src = fetchgit {
2015-07-11 11:50:24 +00:00
url = "https://github.com/momiji/tpm-luks";
rev = "c9c5b7fdddbcdac1cd4d2ea6baddd0617cc88ffa";
sha256 = "1ms2v57f13r9km6mvf9rha5ndmlmjvrz3mcikai6nzhpj0nrjz0w";
2015-07-04 21:57:59 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ gawk trousers cryptsetup openssl ];
2015-07-04 21:57:59 +00:00
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;
};
}