diff options
author | Marc Weber | 2010-06-08 05:44:04 +0000 |
---|---|---|
committer | Marc Weber | 2010-06-08 05:44:04 +0000 |
commit | 47046e66c428cfa35e2402351ec1e870b9fde818 (patch) | |
tree | 2b3b28d9ddbfbb39282cf4d4f5903e6ec8bc3bda /pkgs/os-specific | |
parent | 23b1430ec5c544ccf43cf72c05dd1918374dce5b (diff) |
update lvm2 (this time not using latest version because I hope this is more stable and won't be removed that fast..
svn path=/nixpkgs/trunk/; revision=22175
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r-- | pkgs/os-specific/linux/lvm2/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/lvm2/default.nix b/pkgs/os-specific/linux/lvm2/default.nix index a03463362735..96b5e5b019ad 100644 --- a/pkgs/os-specific/linux/lvm2/default.nix +++ b/pkgs/os-specific/linux/lvm2/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, udev }: let - v = "2.02.64"; + v = "2.02.65"; in stdenv.mkDerivation { @@ -9,7 +9,7 @@ stdenv.mkDerivation { src = fetchurl { url = "ftp://sources.redhat.com/pub/lvm2/LVM2.${v}.tgz"; - sha256 = "130yg8a9l0266hraklalm2k26n25a8kb2nvhj13cnczfxbz5a4m0"; + sha256 = "2a4157b91b7ad5ea84359e8548b64947611beea01862e010be71f54b649e7ad1"; }; configureFlags = "--disable-readline --enable-udev_rules --enable-udev_sync"; |