8c4256e651
Upstream changelog can be found at: https://git.fedorahosted.org/cgit/lvm2.git/tree/WHATS_NEW?h=v2_02_140&id=0faa27d4f55abcda5fa94ef92343eb44e95ada89 I have tested this with: nix-build nixos/release.nix -A tests.installer.lvm.x86_64-linux Signed-off-by: aszlig <aszlig@redmoonstudios.org>
69 lines
2.1 KiB
Nix
69 lines
2.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, udev, utillinux, coreutils, enable_dmeventd ? false }:
|
|
|
|
let
|
|
version = "2.02.140";
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "lvm2-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://sources.redhat.com/pub/lvm2/releases/LVM2.${version}.tgz";
|
|
sha256 = "1jd46diyv7074fw8kxwq7imn4pl76g01d8y7z4scq0lkxf8jmpai";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--disable-readline"
|
|
"--enable-udev_rules"
|
|
"--enable-udev_sync"
|
|
"--enable-pkgconfig"
|
|
"--enable-applib"
|
|
"--enable-cmdlib"
|
|
] ++ stdenv.lib.optional enable_dmeventd " --enable-dmeventd";
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ udev ];
|
|
|
|
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 \
|
|
--replace /usr/bin/udevadm ${udev}/bin/udevadm
|
|
|
|
sed -i /DEFAULT_SYS_DIR/d Makefile.in
|
|
sed -i /DEFAULT_PROFILE_DIR/d conf/Makefile.in
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
#patches = [ ./purity.patch ];
|
|
|
|
# To prevent make install from failing.
|
|
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
|
|
|
|
# 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
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://sourceware.org/lvm2/;
|
|
descriptions = "Tools to support Logical Volume Management (LVM) on Linux";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
|
inherit version;
|
|
downloadPage = "ftp://sources.redhat.com/pub/lvm2/";
|
|
};
|
|
}
|