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