Add system argument

This commit is contained in:
Eelco Dolstra 2013-09-09 15:17:08 +02:00
parent 3567bdb514
commit 03ef6b69be

View file

@ -1,6 +1,6 @@
{ nixpkgs ? <nixpkgs> }:
{ nixpkgs ? <nixpkgs>, system ? builtins.currentSystem }:
with import nixpkgs { };
with import nixpkgs { inherit system; };
runCommand "nix-repl"
{ buildInputs = [ readline nixUnstable boehmgc ]; }