summary refs log tree commit diff
path: root/pkgs/stdenv/nix/default.nix
blob: 5d454e26ce78613c7e394edd95f31a3694316bf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, pkgs}:

(import ../generic) {
  name = "stdenv-nix";
  preHook = ./prehook.sh;
  initialPath = (import ./path.nix) {pkgs = pkgs;};

  inherit stdenv;

  gcc = (import ../../build-support/gcc-wrapper) {
    name = pkgs.gcc.name;
    nativeTools = false;
    nativeGlibc = true;
    inherit (pkgs) gcc binutils;
    inherit stdenv;
  };

  param1 = pkgs.bash;
}