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

                                             
 

                                                   
                          

               
                                                                       
 
                         






                                         
                               
                                         

                                                            

       
let pkgs = (import <nixpkgs> {}).third_party;
in with pkgs;

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

clangStdenv.mkDerivation {
  name = "nix";

  buildInputs = buildDeps ++ propagatedDeps ++ 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
    '';
}