90 lines
3.1 KiB
Nix
90 lines
3.1 KiB
Nix
{ stdenv, fetchurl, fetchpatch, pkgconfig, systemd, udev, utillinux, libuuid
|
|
, thin-provisioning-tools, enable_dmeventd ? false }:
|
|
|
|
let
|
|
version = "2.02.177";
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "lvm2-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://sources.redhat.com/pub/lvm2/releases/LVM2.${version}.tgz";
|
|
sha256 = "1wl0isn0yz5wvglwylnlqkppafwmvhliq5bd92vjqp5ir4za49a0";
|
|
};
|
|
|
|
configureFlags = [
|
|
"--disable-readline"
|
|
"--enable-udev_rules"
|
|
"--enable-udev_sync"
|
|
"--enable-pkgconfig"
|
|
"--enable-applib"
|
|
"--enable-cmdlib"
|
|
] ++ stdenv.lib.optional enable_dmeventd " --enable-dmeventd"
|
|
++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
"ac_cv_func_malloc_0_nonnull=yes"
|
|
"ac_cv_func_realloc_0_nonnull=yes"
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ udev libuuid thin-provisioning-tools ];
|
|
|
|
preConfigure =
|
|
''
|
|
substituteInPlace scripts/lvm2_activation_generator_systemd_red_hat.c \
|
|
--replace /usr/bin/udevadm ${systemd}/bin/udevadm
|
|
|
|
sed -i /DEFAULT_SYS_DIR/d Makefile.in
|
|
sed -i /DEFAULT_PROFILE_DIR/d conf/Makefile.in
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
#patches = [ ./purity.patch ];
|
|
patches = stdenv.lib.optionals stdenv.hostPlatform.isMusl [
|
|
(fetchpatch {
|
|
name = "fix-stdio-usage.patch";
|
|
url = "https://git.alpinelinux.org/cgit/aports/plain/main/lvm2/fix-stdio-usage.patch?h=3.7-stable&id=31bd4a8c2dc00ae79a821f6fe0ad2f23e1534f50";
|
|
sha256 = "0m6wr6qrvxqi2d2h054cnv974jq1v65lqxy05g1znz946ga73k3p";
|
|
})
|
|
(fetchpatch {
|
|
name = "mallinfo.patch";
|
|
url = "https://git.alpinelinux.org/cgit/aports/plain/main/lvm2/mallinfo.patch?h=3.7-stable&id=31bd4a8c2dc00ae79a821f6fe0ad2f23e1534f50";
|
|
sha256 = "0g6wlqi215i5s30bnbkn8w7axrs27y3bnygbpbnf64wwx7rxxlj0";
|
|
})
|
|
(fetchpatch {
|
|
name = "mlockall-default-config.patch";
|
|
url = "https://git.alpinelinux.org/cgit/aports/plain/main/lvm2/mlockall-default-config.patch?h=3.7-stable&id=31bd4a8c2dc00ae79a821f6fe0ad2f23e1534f50";
|
|
sha256 = "1ivbj3sphgf8n1ykfiv5rbw7s8dgnj5jcr9jl2v8cwf28lkacw5l";
|
|
})
|
|
];
|
|
|
|
doCheck = false; # requires root
|
|
|
|
# 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/;
|
|
description = "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/";
|
|
};
|
|
}
|