2019-03-20 10:06:23 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, makeWrapper
|
2019-04-12 17:22:04 +02:00
|
|
|
, gettext, zsh, pinentry, cryptsetup, gnupg, utillinux, e2fsprogs, sudo
|
2019-03-20 10:06:23 +01:00
|
|
|
}:
|
2016-04-22 17:42:40 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "tomb";
|
2019-11-30 14:30:43 +01:00
|
|
|
version = "2.7";
|
2016-04-22 17:42:40 +02:00
|
|
|
|
2017-06-05 12:02:03 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dyne";
|
|
|
|
repo = "Tomb";
|
|
|
|
rev = "v${version}";
|
2019-11-30 14:30:43 +01:00
|
|
|
sha256 = "1vzkpzci6cp1r1q2n34pcgcns78i726k8d89dd6pibyj0vfnkl57";
|
2016-04-22 17:42:40 +02:00
|
|
|
};
|
|
|
|
|
2019-04-12 17:22:04 +02:00
|
|
|
buildInputs = [ sudo zsh pinentry ];
|
2019-03-20 10:06:23 +01:00
|
|
|
|
2017-06-05 12:02:03 +02:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# if not, it shows .tomb-wrapped when running
|
|
|
|
substituteInPlace tomb \
|
|
|
|
--replace 'TOMBEXEC=$0' 'TOMBEXEC=tomb'
|
|
|
|
'';
|
2016-04-22 17:42:40 +02:00
|
|
|
|
2019-03-20 10:06:23 +01:00
|
|
|
doInstallCheck = true;
|
2019-04-12 17:22:04 +02:00
|
|
|
installCheckPhase = "$out/bin/tomb -h";
|
2016-04-22 17:42:40 +02:00
|
|
|
|
|
|
|
installPhase = ''
|
2017-06-05 12:02:03 +02:00
|
|
|
install -Dm755 tomb $out/bin/tomb
|
|
|
|
install -Dm644 doc/tomb.1 $out/share/man/man1/tomb.1
|
2016-04-22 17:42:40 +02:00
|
|
|
|
|
|
|
wrapProgram $out/bin/tomb \
|
2019-03-20 10:06:23 +01:00
|
|
|
--prefix PATH : $out/bin:${lib.makeBinPath [ cryptsetup gettext gnupg pinentry utillinux e2fsprogs ]}
|
2016-04-22 17:42:40 +02:00
|
|
|
'';
|
|
|
|
|
2017-06-05 12:02:03 +02:00
|
|
|
meta = with stdenv.lib; {
|
2016-04-22 17:42:40 +02:00
|
|
|
description = "File encryption on GNU/Linux";
|
2017-06-05 12:02:03 +02:00
|
|
|
homepage = https://www.dyne.org/software/tomb/;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = platforms.linux;
|
2016-04-22 17:42:40 +02:00
|
|
|
};
|
|
|
|
}
|