From 8d91e10664dfafeeb6de364f69cdde3cec38e501 Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Sun, 28 Aug 2005 00:19:42 +0000 Subject: [PATCH] add dietlibc wrapper and build e2fsprogs with dietlibc. This cost some time because it was first mislinked to glibc (grrrr Eelco, this will cost you a beer!) svn path=/nixpkgs/trunk/; revision=3731 --- pkgs/system/all-packages-generic.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix index 87b1e3886293..1cab12cdd2d5 100644 --- a/pkgs/system/all-packages-generic.nix +++ b/pkgs/system/all-packages-generic.nix @@ -381,6 +381,17 @@ rec { inherit fetchurl stdenv; }; + dietgcc = (import ../build-support/gcc-wrapper) { + nativeTools = false; + nativeGlibc = false; + gcc = (import ../os-specific/linux/dietlibc-wrapper) { + inherit stdenv dietlibc; + gcc = stdenv.gcc; + }; + inherit (stdenv.gcc) binutils glibc; + inherit stdenv; + }; + gcc33 = (import ../build-support/gcc-wrapper) { nativeTools = false; nativeGlibc = false; @@ -1093,6 +1104,11 @@ rec { inherit fetchurl stdenv; }; + dietlibcWrapper = (import ../os-specific/linux/dietlibc-wrapper) { + inherit stdenv dietlibc; + gcc = stdenv.gcc; + }; + hwdata = (import ../os-specific/linux/hwdata) { inherit fetchurl stdenv; }; @@ -1137,6 +1153,10 @@ rec { inherit fetchurl stdenv gettext; }; + e2fsprogsDiet = (import ../os-specific/linux/e2fsprogs-diet) { + inherit fetchurl stdenv gettext dietgcc; + }; + nettools = (import ../os-specific/linux/net-tools) { inherit fetchurl stdenv; };