2014-08-31 22:06:41 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, udev, utillinux, coreutils, enable_dmeventd ? false }:
|
2010-05-15 18:43:10 +00:00
|
|
|
|
|
|
|
let
|
2015-07-07 00:13:50 +00:00
|
|
|
version = "2.02.124";
|
2010-05-15 18:43:10 +00:00
|
|
|
in
|
2006-12-23 23:16:04 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-08-31 17:08:56 +00:00
|
|
|
name = "lvm2-${version}";
|
2011-08-18 13:05:03 +00:00
|
|
|
|
2006-12-23 23:16:04 +00:00
|
|
|
src = fetchurl {
|
2014-08-31 17:08:56 +00:00
|
|
|
url = "ftp://sources.redhat.com/pub/lvm2/releases/LVM2.${version}.tgz";
|
2015-07-07 00:13:50 +00:00
|
|
|
sha256 = "0myqs0ajpjmlc56vp4f66x5izhbh7wzzf3408gqnrjmikb5sr9rh";
|
2006-12-23 23:16:04 +00:00
|
|
|
};
|
2011-08-18 13:05:03 +00:00
|
|
|
|
2011-07-23 01:29:51 +00:00
|
|
|
configureFlags =
|
2014-08-31 22:06:41 +00:00
|
|
|
"--disable-readline --enable-udev_rules --enable-udev_sync --enable-pkgconfig --enable-applib --enable-cmdlib"
|
|
|
|
+ (stdenv.lib.optionalString enable_dmeventd " --enable-dmeventd")
|
|
|
|
;
|
2010-05-15 18:43:10 +00:00
|
|
|
|
2011-07-23 01:29:51 +00:00
|
|
|
buildInputs = [ pkgconfig udev ];
|
2011-08-18 13:05:03 +00:00
|
|
|
|
2012-08-16 19:36:25 +00:00
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
substituteInPlace scripts/lvmdump.sh \
|
|
|
|
--replace /usr/bin/tr ${coreutils}/bin/tr
|
|
|
|
substituteInPlace scripts/lvm2_activation_generator_systemd_red_hat.c \
|
2013-09-20 09:45:50 +00:00
|
|
|
--replace /usr/sbin/lvm $out/sbin/lvm \
|
|
|
|
--replace /usr/bin/udevadm ${udev}/bin/udevadm
|
2013-09-19 12:19:10 +00:00
|
|
|
|
|
|
|
sed -i /DEFAULT_SYS_DIR/d Makefile.in
|
|
|
|
sed -i /DEFAULT_PROFILE_DIR/d conf/Makefile.in
|
2012-08-16 19:36:25 +00:00
|
|
|
'';
|
|
|
|
|
2014-04-15 16:02:07 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2012-08-16 19:36:25 +00:00
|
|
|
#patches = [ ./purity.patch ];
|
2011-08-18 13:05:03 +00:00
|
|
|
|
2006-12-23 23:16:04 +00:00
|
|
|
# To prevent make install from failing.
|
|
|
|
preInstall = "installFlags=\"OWNER= GROUP= confdir=$out/etc\"";
|
2010-01-07 16:14:10 +00:00
|
|
|
|
2012-08-16 19:36:25 +00:00
|
|
|
# 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
|
2013-09-20 07:20:14 +00:00
|
|
|
|
|
|
|
# Systemd stuff
|
|
|
|
mkdir -p $out/etc/systemd/system $out/lib/systemd/system-generators
|
|
|
|
cp scripts/blk_availability_systemd_red_hat.service $out/etc/systemd/system
|
|
|
|
cp scripts/lvm2_activation_generator_systemd_red_hat $out/lib/systemd/system-generators
|
2012-08-16 19:36:25 +00:00
|
|
|
'';
|
|
|
|
|
2010-01-07 16:14:10 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://sourceware.org/lvm2/;
|
|
|
|
descriptions = "Tools to support Logical Volume Management (LVM) on Linux";
|
2011-08-18 13:05:03 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2014-08-31 17:08:56 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
|
|
|
inherit version;
|
|
|
|
downloadPage = "ftp://sources.redhat.com/pub/lvm2/";
|
2010-01-07 16:14:10 +00:00
|
|
|
};
|
2006-12-23 23:16:04 +00:00
|
|
|
}
|