about summary refs log blame commit diff
path: root/default.nix
blob: c4a967bf52827702fd112af3cb99b751ecdf4855 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                         
 
                                        




                                                     

                                             
                                                             
                                                           
    
{ 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 \
      -lformat -lutil -lstore -lexpr -lmain -lreadline -lgc
  ''