lix/default.nix

12 lines
311 B
Nix
Raw Normal View History

with import <nixpkgs> { };
runCommand "nix-repl"
{ buildInputs = [ readline nixUnstable boehmgc ]; }
''
mkdir -p $out/bin
2013-09-06 19:00:36 +00:00
g++ -O3 -Wall -std=c++0x \
-o $out/bin/nix-repl ${./nix-repl.cc} \
-I${nixUnstable}/include/nix -L${nixUnstable}/lib/nix \
2013-09-06 09:54:49 +00:00
-lexpr -lmain -lreadline -lgc
''