2013-09-09 15:17:08 +02:00
|
|
|
{ nixpkgs ? <nixpkgs>, system ? builtins.currentSystem }:
|
2013-09-09 14:03:28 +02:00
|
|
|
|
2013-09-09 15:17:08 +02:00
|
|
|
with import nixpkgs { inherit system; };
|
2013-09-02 15:18:15 +02:00
|
|
|
|
|
|
|
runCommand "nix-repl"
|
|
|
|
{ buildInputs = [ readline nixUnstable boehmgc ]; }
|
|
|
|
''
|
|
|
|
mkdir -p $out/bin
|
2013-09-06 21:00:36 +02:00
|
|
|
g++ -O3 -Wall -std=c++0x \
|
|
|
|
-o $out/bin/nix-repl ${./nix-repl.cc} \
|
2013-09-02 15:18:15 +02:00
|
|
|
-I${nixUnstable}/include/nix -L${nixUnstable}/lib/nix \
|
2013-09-09 16:02:35 +02:00
|
|
|
-lformat -lutil -lstore -lexpr -lmain -lreadline -lgc
|
2013-09-02 15:18:15 +02:00
|
|
|
''
|