summary refs log tree commit diff
path: root/pkgs/misc/source-and-tags/default.nix
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/misc/source-and-tags/default.nix
parente2d505b24e50e16e3634478d565c7c9988b1d90f (diff)
downloadnixpkgs-84779a6f7da93bd6325f478c62c82cc0a1a2e341.tar
nixpkgs-84779a6f7da93bd6325f478c62c82cc0a1a2e341.tar.gz
nixpkgs-84779a6f7da93bd6325f478c62c82cc0a1a2e341.tar.bz2
nixpkgs-84779a6f7da93bd6325f478c62c82cc0a1a2e341.tar.lz
nixpkgs-84779a6f7da93bd6325f478c62c82cc0a1a2e341.tar.xz
nixpkgs-84779a6f7da93bd6325f478c62c82cc0a1a2e341.tar.zst
nixpkgs-84779a6f7da93bd6325f478c62c82cc0a1a2e341.zip
Remove unnecessary parentheses around if conditions
Pet peeve...
Diffstat (limited to 'pkgs/misc/source-and-tags/default.nix')
-rw-r--r--pkgs/misc/source-and-tags/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/misc/source-and-tags/default.nix b/pkgs/misc/source-and-tags/default.nix
index e3993d0daea..ece31bbaa74 100644
--- a/pkgs/misc/source-and-tags/default.nix
+++ b/pkgs/misc/source-and-tags/default.nix
@@ -4,8 +4,8 @@ args: with args; {
                                       || x ? meta && x.meta ? sourceWithTags );
   # hack because passthru doesn't work the way I'd expect. Don't have time to spend on this right now
   # that's why I'm abusing meta for the same purpose in ghcsAndLibs
-  sourceWithTagsFromDerivation = x : if (x ? passthru && x.passthru ? sourceWithTags ) then x.passthru.sourceWithTags
-                                     else if (x ? meta && x.meta ? sourceWithTags ) then x.meta.sourceWithTags
+  sourceWithTagsFromDerivation = x : if x ? passthru && x.passthru ? sourceWithTags  then x.passthru.sourceWithTags
+                                     else if x ? meta && x.meta ? sourceWithTags  then x.meta.sourceWithTags
                                        else null;
 
   # createTagFiles =  [ { name  = "my_tag_name_without_suffix", tagCmd = "ctags -R . -o \$TAG_FILE"; } ]