Remove unnecessary "system" argument

This commit is contained in:
Eelco Dolstra 2012-04-14 18:48:11 +02:00
parent e855c7e2c9
commit ef902274fd
4 changed files with 6 additions and 6 deletions

View file

@ -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 ];