mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
2cf0e67761
Fixes #2.
14 lines
452 B
Nix
14 lines
452 B
Nix
{ nixpkgs ? <nixpkgs>, system ? builtins.currentSystem }:
|
|
|
|
with import nixpkgs { inherit system; };
|
|
|
|
runCommand "nix-repl"
|
|
{ buildInputs = [ readline nix boehmgc ]; }
|
|
''
|
|
mkdir -p $out/bin
|
|
g++ -O3 -Wall -std=c++0x \
|
|
-o $out/bin/nix-repl ${./nix-repl.cc} \
|
|
-I${nix}/include/nix \
|
|
-lnixformat -lnixutil -lnixstore -lnixexpr -lnixmain -lreadline -lgc \
|
|
-DNIX_VERSION=\"${(builtins.parseDrvName nix.name).version}\"
|
|
''
|