forked from lix-project/lix
12 lines
311 B
Nix
12 lines
311 B
Nix
with import <nixpkgs> { };
|
|
|
|
runCommand "nix-repl"
|
|
{ buildInputs = [ readline nixUnstable boehmgc ]; }
|
|
''
|
|
mkdir -p $out/bin
|
|
g++ -O3 -Wall -std=c++0x \
|
|
-o $out/bin/nix-repl ${./nix-repl.cc} \
|
|
-I${nixUnstable}/include/nix -L${nixUnstable}/lib/nix \
|
|
-lexpr -lmain -lreadline -lgc
|
|
''
|