nix-super/default.nix

14 lines
335 B
Nix
Raw Normal View History

2013-09-09 15:03:28 +03:00
{ nixpkgs ? <nixpkgs> }:
with import nixpkgs { };
runCommand "nix-repl"
{ buildInputs = [ readline nixUnstable boehmgc ]; }
''
mkdir -p $out/bin
2013-09-06 22:00:36 +03: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 12:54:49 +03:00
-lexpr -lmain -lreadline -lgc
''