nixpkgs/pkgs/applications/misc/veracrypt/default.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, pkgconfig, yasm, fuse, wxGTK30, lvm2, makeself,
2017-04-02 14:38:08 +00:00
wxGUI ? true
}:
with stdenv.lib;
2017-04-02 14:38:08 +00:00
stdenv.mkDerivation rec {
name = "veracrypt-${version}";
version = "1.22";
2017-04-02 14:38:08 +00:00
src = fetchurl {
2017-07-19 09:28:32 +00:00
url = "https://launchpad.net/veracrypt/trunk/${version}/+download/VeraCrypt_${version}_Source.tar.bz2";
sha256 = "0w5qyxnx03vn93ach1kb995w2mdg43s82gf1isbk206sxp00qk4y";
2017-04-02 14:38:08 +00:00
};
unpackPhase =
''
2017-07-19 09:28:32 +00:00
tar xjf $src
cd src
2017-04-02 14:38:08 +00:00
'';
2017-07-19 09:28:32 +00:00
nativeBuildInputs = [ makeself yasm pkgconfig ];
buildInputs = [ fuse lvm2 ]
++ optional wxGUI wxGTK30;
makeFlags = optionalString (!wxGUI) "NOGUI=1";
2017-04-02 14:38:08 +00:00
installPhase =
''
mkdir -p $out/bin
cp Main/veracrypt $out/bin
mkdir -p $out/share/$name
cp License.txt $out/share/$name/LICENSE
mkdir -p $out/share/applications
sed "s,Exec=.*,Exec=$out/bin/veracrypt," Setup/Linux/veracrypt.desktop > $out/share/applications/veracrypt.desktop
2017-04-02 14:38:08 +00:00
'';
meta = {
description = "Free Open-Source filesystem on-the-fly encryption";
homepage = https://www.veracrypt.fr/;
2017-04-02 14:38:08 +00:00
license = "VeraCrypt License";
maintainers = with maintainers; [ dsferruzza ];
platforms = platforms.linux;
2017-04-02 14:38:08 +00:00
};
}