From 03ef6b69be4711309fa04fa32681e03fde3d234f Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 9 Sep 2013 15:17:08 +0200 Subject: [PATCH] Add system argument --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 97162c6e8..4c9cbcc0c 100644 --- a/default.nix +++ b/default.nix @@ -1,6 +1,6 @@ -{ nixpkgs ? }: +{ nixpkgs ? , system ? builtins.currentSystem }: -with import nixpkgs { }; +with import nixpkgs { inherit system; }; runCommand "nix-repl" { buildInputs = [ readline nixUnstable boehmgc ]; }