summary refs log tree commit diff
path: root/pkgs/applications/misc/truecrypt
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-12-28 19:54:15 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-12-28 19:54:15 +0100
commit84779a6f7da93bd6325f478c62c82cc0a1a2e341 (patch)
tree554971a930d84656bb952ba0f9a328ef08e70c72 /pkgs/applications/misc/truecrypt
parente2d505b24e50e16e3634478d565c7c9988b1d90f (diff)
downloadnixlib-84779a6f7da93bd6325f478c62c82cc0a1a2e341.tar
nixlib-84779a6f7da93bd6325f478c62c82cc0a1a2e341.tar.gz
nixlib-84779a6f7da93bd6325f478c62c82cc0a1a2e341.tar.bz2
nixlib-84779a6f7da93bd6325f478c62c82cc0a1a2e341.tar.lz
nixlib-84779a6f7da93bd6325f478c62c82cc0a1a2e341.tar.xz
nixlib-84779a6f7da93bd6325f478c62c82cc0a1a2e341.tar.zst
nixlib-84779a6f7da93bd6325f478c62c82cc0a1a2e341.zip
Remove unnecessary parentheses around if conditions
Pet peeve...
Diffstat (limited to 'pkgs/applications/misc/truecrypt')
-rw-r--r--pkgs/applications/misc/truecrypt/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/truecrypt/default.nix b/pkgs/applications/misc/truecrypt/default.nix
index 40a4f8412667..19fa85b279c6 100644
--- a/pkgs/applications/misc/truecrypt/default.nix
+++ b/pkgs/applications/misc/truecrypt/default.nix
@@ -69,7 +69,7 @@ stdenv.mkDerivation {
   };
 
   buildInputs = [ pkgconfig fuse devicemapper wxGTK nasm ]; 
-  makeFlags = if (wxGUI) then "" else "NOGUI=1";
+  makeFlags = if wxGUI then "" else "NOGUI=1";
 
   meta = {
     description = "Free Open-Source filesystem on-the-fly encryption";