* Forgot to add.

This commit is contained in:
Eelco Dolstra 2012-01-03 09:19:40 +00:00
parent 39d45a6b09
commit 9b7df1ef00
1 changed files with 13 additions and 0 deletions

13
corepkgs/config.nix.in Normal file
View File

@ -0,0 +1,13 @@
let
fromEnv = var: def:
let val = builtins.getEnv var; in
if val != "" then val else def;
in {
perl = "@perl@";
shell = "@shell@";
coreutils = "@coreutils@";
bzip2 = fromEnv "NIX_BZIP2" "@bzip2@";
tar = "@tar@";
tr = "@tr@";
nixBinDir = fromEnv "NIX_BIN_DIR" "@bindir@";
}