about summary refs log tree commit diff
path: root/corepkgs/buildenv.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-04-14T16·48+0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-04-14T16·48+0200
commitef902274fd4b1c13732851e6cbfa00d4d4e46821 (patch)
treef9c4ecdc6dba5e775f5d1ba18d2c37d2ca615529 /corepkgs/buildenv.nix
parente855c7e2c9a9a5cbe4406c1f9351181a9ebe6283 (diff)
Remove unnecessary "system" argument
Diffstat (limited to 'corepkgs/buildenv.nix')
-rw-r--r--corepkgs/buildenv.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/corepkgs/buildenv.nix b/corepkgs/buildenv.nix
index 6e2bee10b1..641231dd9e 100644
--- a/corepkgs/buildenv.nix
+++ b/corepkgs/buildenv.nix
@@ -1,10 +1,10 @@
 with import <nix/config.nix>;
 
-{ system, derivations, manifest }:
+{ derivations, manifest }:
 
 derivation { 
   name = "user-environment";
-  system = system;
+  system = builtins.currentSystem;
   builder = perl;
   args = [ "-w" ./buildenv.pl ];