about summary refs log tree commit diff
path: root/default.nix
blob: 4c9cbcc0cb44ff4e3dc8b725dbc0029df5ea6159 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ nixpkgs ? <nixpkgs>, system ? builtins.currentSystem }:

with import nixpkgs { inherit system; };

runCommand "nix-repl"
  { buildInputs = [ readline nixUnstable boehmgc ]; }
  ''
    mkdir -p $out/bin
    g++ -O3 -Wall -std=c++0x \
      -o $out/bin/nix-repl ${./nix-repl.cc} \
      -I${nixUnstable}/include/nix -L${nixUnstable}/lib/nix \
      -lexpr -lmain -lreadline -lgc
  ''