lix/default.nix

14 lines
384 B
Nix
Raw Normal View History

2013-09-09 13:17:08 +00:00
{ nixpkgs ? <nixpkgs>, system ? builtins.currentSystem }:
2013-09-09 12:03:28 +00:00
2013-09-09 13:17:08 +00:00
with import nixpkgs { inherit system; };
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
''