about summary refs log tree commit diff
path: root/pkgs/applications/misc/truecrypt
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-02-02 08:54:54 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-02-02 08:54:54 +0000
commitf53c231cc438964ec7226e98fd982150330be2dd (patch)
treea76842b2b06d80e1068398d1e246c6cc9bf898fc /pkgs/applications/misc/truecrypt
parent2b3fb5a8243357b048c869b149bb8d157ae4fc30 (diff)
downloadnixlib-f53c231cc438964ec7226e98fd982150330be2dd.tar
nixlib-f53c231cc438964ec7226e98fd982150330be2dd.tar.gz
nixlib-f53c231cc438964ec7226e98fd982150330be2dd.tar.bz2
nixlib-f53c231cc438964ec7226e98fd982150330be2dd.tar.lz
nixlib-f53c231cc438964ec7226e98fd982150330be2dd.tar.xz
nixlib-f53c231cc438964ec7226e98fd982150330be2dd.tar.zst
nixlib-f53c231cc438964ec7226e98fd982150330be2dd.zip
Updating truecrypt to 7.1.
I pick the tarball not from the mainsite, but we checked that the hash
corresponds with that of the main site.


svn path=/nixpkgs/trunk/; revision=31963
Diffstat (limited to 'pkgs/applications/misc/truecrypt')
-rw-r--r--pkgs/applications/misc/truecrypt/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/misc/truecrypt/default.nix b/pkgs/applications/misc/truecrypt/default.nix
index 906817fe5a26..bd7197534519 100644
--- a/pkgs/applications/misc/truecrypt/default.nix
+++ b/pkgs/applications/misc/truecrypt/default.nix
@@ -40,17 +40,17 @@ library, use the 'NOGUI' parameter:
    $ make NOGUI=1
 */
 
-{ fetchurl, stdenv, pkgconfig, fuse, wxGTK, devicemapper,
+{ fetchurl, stdenv, pkgconfig, nasm, fuse, wxGTK, devicemapper,
   wxGUI ? true
 }:
 
 stdenv.mkDerivation {
-  name = "truecrypt-6.3a";
+  name = "truecrypt-7.1";
   builder = ./builder.sh;
 
   src = fetchurl {
-    url = http://www.sfr-fresh.com/unix/misc/TrueCrypt_6.3a_Source.tar.gz;
-    sha256 = "1vwnzay9gjlldqbdb20rhq2arhyzhdy347qc00hkpqmv2b8z070y";
+    url = http://fossies.org/unix/misc/TrueCrypt-7.1-Source.tar.gz;
+    sha256 = "1x6rdxcvklb3zpmgfc3mg5h71gzki1q55ljkzjab2vzkf9n5v0cl";
   };
 
   pkcs11h = fetchurl {
@@ -68,7 +68,7 @@ stdenv.mkDerivation {
     sha256 = "5ae6a4f32ca737e02def3bf314c9842fb89be82bf00b6f4022a97d8d565522b8";
   };
 
-  buildInputs = [ pkgconfig fuse devicemapper wxGTK ]; 
+  buildInputs = [ pkgconfig fuse devicemapper wxGTK nasm ]; 
   makeFlags = if (wxGUI) then "" else "NOGUI=1";
 
   meta = {