aboutsummaryrefslogtreecommitdiff
path: root/corepkgs/nar.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-04-14 18:48:11 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-04-14 18:48:11 +0200
commitef902274fd4b1c13732851e6cbfa00d4d4e46821 (patch)
treef9c4ecdc6dba5e775f5d1ba18d2c37d2ca615529 /corepkgs/nar.nix
parente855c7e2c9a9a5cbe4406c1f9351181a9ebe6283 (diff)
Remove unnecessary "system" argument
Diffstat (limited to 'corepkgs/nar.nix')
-rw-r--r--corepkgs/nar.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/corepkgs/nar.nix b/corepkgs/nar.nix
index 70a4af2f9..5be8be10c 100644
--- a/corepkgs/nar.nix
+++ b/corepkgs/nar.nix
@@ -20,11 +20,12 @@ let
in
-{ system, storePath, hashAlgo }:
+{ storePath, hashAlgo }:
derivation {
name = "nar";
+ system = builtins.currentSystem;
builder = shell;
args = [ "-e" builder ];
- inherit system storePath hashAlgo;
+ inherit storePath hashAlgo;
}