Remove unnecessary "system" argument
This commit is contained in:
parent
e855c7e2c9
commit
ef902274fd
4 changed files with 6 additions and 6 deletions
|
|
@ -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 ];
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue