diff options
Diffstat (limited to 'corepkgs/nar.nix')
-rw-r--r-- | corepkgs/nar.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/corepkgs/nar.nix b/corepkgs/nar.nix index 70a4af2f9ddb..5be8be10c166 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; } |