about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/util-linux
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2005-12-23 22:59:33 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2005-12-23 22:59:33 +0000
commit6e80370dfeb48acbf2f053c6cfdb18f2415be874 (patch)
tree4df26ef04be3621057fc7c1337a61b01a1c792a5 /pkgs/os-specific/linux/util-linux
parent136c43448d18abcc42ceb4d9e3888955ce1eccdf (diff)
downloadnixlib-6e80370dfeb48acbf2f053c6cfdb18f2415be874.tar
nixlib-6e80370dfeb48acbf2f053c6cfdb18f2415be874.tar.gz
nixlib-6e80370dfeb48acbf2f053c6cfdb18f2415be874.tar.bz2
nixlib-6e80370dfeb48acbf2f053c6cfdb18f2415be874.tar.lz
nixlib-6e80370dfeb48acbf2f053c6cfdb18f2415be874.tar.xz
nixlib-6e80370dfeb48acbf2f053c6cfdb18f2415be874.tar.zst
nixlib-6e80370dfeb48acbf2f053c6cfdb18f2415be874.zip
update util-linux to 2.12r
svn path=/nixpkgs/trunk/; revision=4424
Diffstat (limited to 'pkgs/os-specific/linux/util-linux')
-rw-r--r--pkgs/os-specific/linux/util-linux/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/util-linux/default.nix b/pkgs/os-specific/linux/util-linux/default.nix
index 6410016d9b34..134260defefc 100644
--- a/pkgs/os-specific/linux/util-linux/default.nix
+++ b/pkgs/os-specific/linux/util-linux/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl}:
 
 stdenv.mkDerivation {
-  name = "util-linux-2.12q";
+  name = "util-linux-2.12r";
   builder = ./builder.sh;
   src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/tarballs/util-linux-2.12q.tar.bz2;
-    md5 = "54320aa1abbce00c0dc030e2c3afe5d7";
+    url = http://www.kernel.org/pub/linux/utils/util-linux/util-linux-2.12r.tar.bz2;
+    md5 = "af9d9e03038481fbf79ea3ac33f116f9";
   };
   patches = [./MCONFIG.patch];
 }