mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
14 lines
448 B
Nix
14 lines
448 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}
|
|
''
|