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

                     
                                                                                                                 
 

                                                   
                                                         

               
                                                     
 
                         






                                         
                               
                                         

                                                            

       
{ useClang ? false }:

with import (builtins.fetchGit { url = https://github.com/NixOS/nixpkgs-channels.git; ref = "nixos-18.09"; }) {};

with import ./release-common.nix { inherit pkgs; };

(if useClang then clangStdenv else stdenv).mkDerivation {
  name = "nix";

  buildInputs = buildDeps ++ tarballDeps ++ perlDeps;

  inherit configureFlags;

  enableParallelBuilding = true;

  installFlags = "sysconfdir=$(out)/etc";

  shellHook =
    ''
      export prefix=$(pwd)/inst
      configureFlags+=" --prefix=$prefix"
      PKG_CONFIG_PATH=$prefix/lib/pkgconfig:$PKG_CONFIG_PATH
      PATH=$prefix/bin:$PATH
    '';
}