1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00
nix/default.nix

17 lines
479 B
Nix
Raw Normal View History

2013-09-09 09:17:08 -04:00
{ nixpkgs ? <nixpkgs>, system ? builtins.currentSystem }:
2013-09-09 08:03:28 -04:00
2013-09-09 09:17:08 -04:00
with import nixpkgs { inherit system; };
let nix = nixUnstable; in
runCommand "nix-repl"
2014-04-11 06:50:46 -04:00
{ buildInputs = [ readline nix boehmgc ]; }
''
mkdir -p $out/bin
2013-09-06 15:00:36 -04:00
g++ -O3 -Wall -std=c++0x \
-o $out/bin/nix-repl ${./nix-repl.cc} \
2014-04-11 06:50:46 -04:00
-I${nix}/include/nix \
-lnixformat -lnixutil -lnixstore -lnixexpr -lnixmain -lreadline -lgc \
-DNIX_VERSION=\"${(builtins.parseDrvName nix.name).version}\"
''