summary refs log tree commit diff
path: root/pkgs/os-specific/linux/klibc
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2014-09-05 16:50:48 -0400
committerShea Levy <shea@shealevy.com>2014-09-05 19:09:00 -0400
commitf4ebb3ebac9ccaf1dacebba0550c21818101be3d (patch)
treeb1968ccf1313b822f04e81e5f5601f1fbc99313b /pkgs/os-specific/linux/klibc
parent0dc8d73d17873ddce19c7472d67662a41c96ca69 (diff)
downloadnixpkgs-f4ebb3ebac9ccaf1dacebba0550c21818101be3d.tar
nixpkgs-f4ebb3ebac9ccaf1dacebba0550c21818101be3d.tar.gz
nixpkgs-f4ebb3ebac9ccaf1dacebba0550c21818101be3d.tar.bz2
nixpkgs-f4ebb3ebac9ccaf1dacebba0550c21818101be3d.tar.lz
nixpkgs-f4ebb3ebac9ccaf1dacebba0550c21818101be3d.tar.xz
nixpkgs-f4ebb3ebac9ccaf1dacebba0550c21818101be3d.tar.zst
nixpkgs-f4ebb3ebac9ccaf1dacebba0550c21818101be3d.zip
klibc: bump
Diffstat (limited to 'pkgs/os-specific/linux/klibc')
-rw-r--r--pkgs/os-specific/linux/klibc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/klibc/default.nix b/pkgs/os-specific/linux/klibc/default.nix
index df44cb68d8b..b948dbff2c1 100644
--- a/pkgs/os-specific/linux/klibc/default.nix
+++ b/pkgs/os-specific/linux/klibc/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, kernelHeaders, kernel, perl }:
 
 let
-  version = "2.0.3";
+  version = "2.0.4";
 
   commonMakeFlags = [
     "prefix=$(out)"
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "mirror://kernel/linux/libs/klibc/2.0/klibc-${version}.tar.xz";
-    sha256 = "02035f2b230020de569d40605485121e0fe481ed33a93bdb8bf8c6ee2695fffa";
+    sha256 = "7f9a0850586def7cf4faeeb75e5d0f66e613674c524f6e77b0f4d93a26c801cb";
   };
 
   patches = [ ./no-reinstall-kernel-headers.patch ];