summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-02-17 15:32:53 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-02-17 15:32:53 +0000
commit2607a78df90fa588413bced8dccb4fd321322cbb (patch)
tree5331020e3ea1d0e5055befa852e131efa8c20467
parent48eb3bd187a1b46e8cb709666ce11c993b5ee644 (diff)
downloadnixpkgs-2607a78df90fa588413bced8dccb4fd321322cbb.tar
nixpkgs-2607a78df90fa588413bced8dccb4fd321322cbb.tar.gz
nixpkgs-2607a78df90fa588413bced8dccb4fd321322cbb.tar.bz2
nixpkgs-2607a78df90fa588413bced8dccb4fd321322cbb.tar.lz
nixpkgs-2607a78df90fa588413bced8dccb4fd321322cbb.tar.xz
nixpkgs-2607a78df90fa588413bced8dccb4fd321322cbb.tar.zst
nixpkgs-2607a78df90fa588413bced8dccb4fd321322cbb.zip
* Use the 2.6.28.5 kernel headers. In particular this fixes this bug:
  http://bugs.gentoo.org/show_bug.cgi?format=multiple&id=252721

  E.g. the hal compile broke because of this.

svn path=/nixpkgs/branches/stdenv-updates/; revision=14101
-rw-r--r--pkgs/os-specific/linux/kernel-headers/2.6.28.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel-headers/2.6.28.nix b/pkgs/os-specific/linux/kernel-headers/2.6.28.nix
index 46f662e46b1..082a65950ca 100644
--- a/pkgs/os-specific/linux/kernel-headers/2.6.28.nix
+++ b/pkgs/os-specific/linux/kernel-headers/2.6.28.nix
@@ -2,14 +2,14 @@
 
 assert stdenv.isLinux;
 
-let version = "2.6.28"; in 
+let version = "2.6.28.5"; in 
 
 stdenv.mkDerivation {
   name = "linux-headers-${version}";
   
   src = fetchurl {
     url = "mirror://kernel/linux/kernel/v2.6/linux-${version}.tar.bz2";
-    sha256 = "1023nl992s4qmnwzbfz385azzpph58azi5rw4w0wwzzybv2rf3df";
+    sha256 = "0hifjh75sinifr5138v22zwbpqln6lhn65k8b57a1dyzlqca7cl9";
   };
 
   platform =