nix-super/default.nix

11 lines
292 B
Nix
Raw Normal View History

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