lix/default.nix

17 lines
502 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; };
let nix = nixUnstable; in
2017-04-25 14:55:03 +00:00
runCommandCC "nix-repl"
{ buildInputs = [ pkgconfig readline nix boehmgc ]; }
''
mkdir -p $out/bin
2017-04-25 14:55:03 +00:00
g++ -O3 -Wall -std=c++14 \
2013-09-06 19:00:36 +00:00
-o $out/bin/nix-repl ${./nix-repl.cc} \
2017-04-25 14:55:03 +00:00
$(pkg-config --cflags nix-main) \
2014-04-11 10:50:46 +00:00
-lnixformat -lnixutil -lnixstore -lnixexpr -lnixmain -lreadline -lgc \
-DNIX_VERSION=\"${(builtins.parseDrvName nix.name).version}\"
''