2013-09-09 16:17:08 +03:00
|
|
|
{ nixpkgs ? <nixpkgs>, system ? builtins.currentSystem }:
|
2013-09-09 15:03:28 +03:00
|
|
|
|
2013-09-09 16:17:08 +03:00
|
|
|
with import nixpkgs { inherit system; };
|
2013-09-02 16:18:15 +03:00
|
|
|
|
|
|
|
runCommand "nix-repl"
|
2014-04-11 13:50:46 +03:00
|
|
|
{ buildInputs = [ readline nix boehmgc ]; }
|
2013-09-02 16:18:15 +03:00
|
|
|
''
|
|
|
|
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} \
|
2014-04-11 13:50:46 +03:00
|
|
|
-I${nix}/include/nix \
|
|
|
|
-lnixformat -lnixutil -lnixstore -lnixexpr -lnixmain -lreadline -lgc \
|
|
|
|
-DNIX_VERSION=${(builtins.parseDrvName nix.name).version}
|
2013-09-02 16:18:15 +03:00
|
|
|
''
|