2017-02-18 22:14:52 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, systemd, libudev, utillinux, coreutils, libuuid
|
|
|
|
, thin-provisioning-tools, enable_dmeventd ? false }:
|
2010-05-15 18:43:10 +00:00
|
|
|
|
|
|
|
let
|
2017-10-21 22:35:34 +00:00
|
|
|
version = "2.02.175";
|
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";
|
2017-10-21 22:35:34 +00:00
|
|
|
sha256 = "0n95cc2b0jb0fh2pd9jyg9ww7lyzpia9n9sryw9f4aq8dpna7dsd";
|
2006-12-23 23:16:04 +00:00
|
|
|
};
|
2011-08-18 13:05:03 +00:00
|
|
|
|
2015-08-19 00:01:13 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-readline"
|
|
|
|
"--enable-udev_rules"
|
|
|
|
"--enable-udev_sync"
|
|
|
|
"--enable-pkgconfig"
|
|
|
|
"--enable-applib"
|
|
|
|
"--enable-cmdlib"
|
|
|
|
] ++ stdenv.lib.optional enable_dmeventd " --enable-dmeventd";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-02-18 22:14:52 +00:00
|
|
|
buildInputs = [ libudev libuuid thin-provisioning-tools ];
|
2011-08-18 13:05:03 +00:00
|
|
|
|
2012-08-16 19:36:25 +00:00
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
substituteInPlace scripts/lvm2_activation_generator_systemd_red_hat.c \
|
2015-10-03 18:52:03 +00:00
|
|
|
--replace /usr/bin/udevadm ${systemd.udev.bin}/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/;
|
2017-04-29 04:24:34 +00:00
|
|
|
description = "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
|
|
|
}
|