de13527000
though. * libxml2: upgrade to latest. * octavefront/rna: keep debug info. svn path=/nixpkgs/trunk/; revision=830
20 lines
404 B
Nix
20 lines
404 B
Nix
{stdenv, pkgs, glibc}:
|
|
|
|
(import ../generic) {
|
|
name = "stdenv-nix-linux-boot";
|
|
preHook = ./prehook-boot.sh;
|
|
initialPath = (import ../nix/path.nix) {pkgs = pkgs;};
|
|
|
|
inherit stdenv;
|
|
|
|
gcc = (import ../../build-support/gcc-wrapper) {
|
|
name = pkgs.gcc.name;
|
|
nativeTools = false;
|
|
nativeGlibc = false;
|
|
inherit (pkgs) gcc binutils;
|
|
inherit stdenv glibc;
|
|
};
|
|
|
|
param1 = pkgs.bash;
|
|
}
|