* Linux 2.6.21.7.
svn path=/nixpkgs/trunk/; revision=9176
This commit is contained in:
parent
16c6da0129
commit
aa983025d6
@ -24,7 +24,7 @@ let
|
|||||||
|
|
||||||
lib = import ../../../lib;
|
lib = import ../../../lib;
|
||||||
|
|
||||||
version = "2.6.21.5";
|
version = "2.6.21.7";
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
@ -34,7 +34,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://ftp.de.kernel.org/pub/linux/kernel/v2.6/linux-${version}.tar.bz2";
|
url = "http://ftp.de.kernel.org/pub/linux/kernel/v2.6/linux-${version}.tar.bz2";
|
||||||
sha256 = "1vvfm6xhk81vvc88ibv6siqjq4a3m2204c9fkb5llasywchgyh85";
|
sha256 = "1c8ndsz35qd8vyng3xsxjjkjv5bnzyvc9b5vd85fz5v0bjp8hx50";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = map (p: p.patch) kernelPatches;
|
patches = map (p: p.patch) kernelPatches;
|
||||||
|
@ -176,17 +176,15 @@ rec {
|
|||||||
allPackages = import ./all-packages.nix;
|
allPackages = import ./all-packages.nix;
|
||||||
}).stdenv;
|
}).stdenv;
|
||||||
|
|
||||||
stdenv = if (bootStdenv == null) then
|
stdenv =
|
||||||
let
|
if bootStdenv != null then bootStdenv else
|
||||||
optionPath = ["replaceStdenv"]; in
|
let changer = getConfig ["replaceStdenv"] null;
|
||||||
let
|
in if changer != null then
|
||||||
changer = getConfig optionPath null; in
|
changer {
|
||||||
(if changer != null then
|
stdenv = defaultStdenv;
|
||||||
changer {stdenv = defaultStdenv;
|
overrideSetup = overrideSetup;
|
||||||
overrideSetup = overrideSetup;}
|
}
|
||||||
else defaultStdenv)
|
else defaultStdenv;
|
||||||
else
|
|
||||||
bootStdenv;
|
|
||||||
|
|
||||||
|
|
||||||
### BUILD SUPPORT
|
### BUILD SUPPORT
|
||||||
@ -3024,8 +3022,7 @@ rec {
|
|||||||
|
|
||||||
eclipseSpoofax = lowPrio (appendToName "with-spoofax" (eclipse [spoofax]));
|
eclipseSpoofax = lowPrio (appendToName "with-spoofax" (eclipse [spoofax]));
|
||||||
|
|
||||||
elinks = (import ../applications/networking/browsers/elinks)
|
elinks = import ../applications/networking/browsers/elinks {
|
||||||
{
|
|
||||||
inherit stdenv fetchurl python perl ncurses x11 zlib openssl;
|
inherit stdenv fetchurl python perl ncurses x11 zlib openssl;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user