lvm2: Update to 2.02.97
This commit is contained in:
parent
ca84b7ff22
commit
548365b95c
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, udev }:
|
{ stdenv, fetchurl, pkgconfig, udev, utillinux, coreutils }:
|
||||||
|
|
||||||
let
|
let
|
||||||
v = "2.02.95";
|
v = "2.02.97";
|
||||||
in
|
in
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
@ -9,7 +9,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "ftp://sources.redhat.com/pub/lvm2/old/LVM2.${v}.tgz";
|
url = "ftp://sources.redhat.com/pub/lvm2/old/LVM2.${v}.tgz";
|
||||||
sha256 = "09cixpdrbzjybf8k8f0rsgkriyvbaj2acmfsg1bzxnjil4vayd83";
|
sha256 = "0azwa555dgvixbdw055yj8cj1q6kd0a36nms005iz7la5q0q5npd";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags =
|
configureFlags =
|
||||||
@ -17,11 +17,28 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = [ pkgconfig udev ];
|
buildInputs = [ pkgconfig udev ];
|
||||||
|
|
||||||
patches = [ ./purity.patch ];
|
preConfigure =
|
||||||
|
''
|
||||||
|
substituteInPlace scripts/lvmdump.sh \
|
||||||
|
--replace /usr/bin/tr ${coreutils}/bin/tr
|
||||||
|
substituteInPlace scripts/lvm2_activation_generator_systemd_red_hat.c \
|
||||||
|
--replace /usr/sbin/lvm $out/sbin/lvm
|
||||||
|
'';
|
||||||
|
|
||||||
|
#patches = [ ./purity.patch ];
|
||||||
|
|
||||||
# To prevent make install from failing.
|
# To prevent make install from failing.
|
||||||
preInstall = "installFlags=\"OWNER= GROUP= confdir=$out/etc\"";
|
preInstall = "installFlags=\"OWNER= GROUP= confdir=$out/etc\"";
|
||||||
|
|
||||||
|
# Install systemd stuff.
|
||||||
|
#installTargets = "install install_systemd_generators install_systemd_units install_tmpfiles_configuration";
|
||||||
|
|
||||||
|
postInstall =
|
||||||
|
''
|
||||||
|
substituteInPlace $out/lib/udev/rules.d/13-dm-disk.rules \
|
||||||
|
--replace $out/sbin/blkid ${utillinux}/sbin/blkid
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://sourceware.org/lvm2/;
|
homepage = http://sourceware.org/lvm2/;
|
||||||
descriptions = "Tools to support Logical Volume Management (LVM) on Linux";
|
descriptions = "Tools to support Logical Volume Management (LVM) on Linux";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user