about summary refs log tree commit diff
path: root/corepkgs
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2012-07-08T15·04-0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-09T19·29-0400
commit53f52c2111bcf339bdaab703a263fd2c001da51c (patch)
tree9224dce198027c1d89dca0dc15094971888a430f /corepkgs
parent543bf742c9391bc49f59c52adb042bbd3c5e2364 (diff)
corepkgs/fetchurl: the 'system' argument can be optional
Diffstat (limited to 'corepkgs')
-rw-r--r--corepkgs/fetchurl.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/corepkgs/fetchurl.nix b/corepkgs/fetchurl.nix
index 72107294c7..3d467fe187 100644
--- a/corepkgs/fetchurl.nix
+++ b/corepkgs/fetchurl.nix
@@ -3,7 +3,7 @@ with import <nix/config.nix>;
 # Argh, this thing is duplicated (more-or-less) in Nixpkgs.  Need to
 # find a way to combine them.
 
-{system, url, outputHash ? "", outputHashAlgo ? "", md5 ? "", sha1 ? "", sha256 ? ""}:
+{system ? builtins.currentSystem, url, outputHash ? "", outputHashAlgo ? "", md5 ? "", sha1 ? "", sha256 ? ""}:
 
 assert (outputHash != "" && outputHashAlgo != "")
     || md5 != "" || sha1 != "" || sha256 != "";