2018-10-24 18:57:03 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, makeself, yasm, fuse, wxGTK, lvm2 }:
|
2017-04-02 14:38:08 +00:00
|
|
|
|
2017-04-02 14:41:11 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2017-04-02 14:38:08 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-10-24 18:57:03 +00:00
|
|
|
pname = "veracrypt";
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
version = "1.23";
|
2017-04-02 14:38:08 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-10-24 18:57:03 +00:00
|
|
|
url = "https://launchpad.net/${pname}/trunk/${version}/+download/VeraCrypt_${version}_Source.tar.bz2";
|
|
|
|
sha256 = "009lqi43n2w272sxv7y7dz9sqx15qkx6lszkswr8mwmkpgkm0px1";
|
2017-04-02 14:38:08 +00:00
|
|
|
};
|
|
|
|
|
2018-10-24 18:57:03 +00:00
|
|
|
sourceRoot = "src";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ makeself pkgconfig yasm ];
|
|
|
|
buildInputs = [ fuse lvm2 wxGTK ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -Dm 755 Main/${pname} "$out/bin/${pname}"
|
|
|
|
install -Dm 444 Resources/Icons/VeraCrypt-256x256.xpm "$out/share/pixmaps/${pname}.xpm"
|
|
|
|
install -Dm 444 License.txt -t "$out/share/doc/${pname}/"
|
|
|
|
install -d $out/share/applications
|
|
|
|
substitute Setup/Linux/${pname}.desktop $out/share/applications/${pname}.desktop \
|
|
|
|
--replace "Exec=/usr/bin/veracrypt" "Exec=$out/bin/veracrypt" \
|
|
|
|
--replace "Icon=veracrypt" "Icon=veracrypt.xpm"
|
|
|
|
'';
|
2017-04-02 14:38:08 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Free Open-Source filesystem on-the-fly encryption";
|
2017-12-29 08:20:53 +00:00
|
|
|
homepage = https://www.veracrypt.fr/;
|
2018-10-24 18:57:03 +00:00
|
|
|
license = [ licenses.asl20 /* or */ "TrueCrypt License version 3.0" ];
|
2017-04-02 14:41:11 +00:00
|
|
|
maintainers = with maintainers; [ dsferruzza ];
|
|
|
|
platforms = platforms.linux;
|
2017-04-02 14:38:08 +00:00
|
|
|
};
|
|
|
|
}
|