lix/default.nix

17 lines
502 B
Nix
Raw Normal View History

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