2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2019-08-19 00:06:10 +00:00
|
|
|
, fetchpatch
|
2020-04-30 14:45:17 +00:00
|
|
|
, fetchurl
|
2019-08-19 00:06:10 +00:00
|
|
|
, pkgconfig
|
2020-11-24 15:29:28 +00:00
|
|
|
, util-linux
|
2019-08-19 00:06:10 +00:00
|
|
|
, libuuid
|
2018-12-08 18:55:40 +00:00
|
|
|
, thin-provisioning-tools, libaio
|
2020-07-14 09:19:43 +00:00
|
|
|
, enableCmdlib ? false
|
|
|
|
, enableDmeventd ? false
|
2019-08-19 00:06:10 +00:00
|
|
|
, udev ? null
|
2020-07-14 10:56:26 +00:00
|
|
|
, nixosTests
|
2019-08-19 00:06:10 +00:00
|
|
|
}:
|
2010-05-15 18:43:10 +00:00
|
|
|
|
2020-05-24 00:22:51 +00:00
|
|
|
# configure: error: --enable-dmeventd requires --enable-cmdlib to be used as well
|
2020-07-14 09:19:43 +00:00
|
|
|
assert enableDmeventd -> enableCmdlib;
|
2020-05-24 00:22:51 +00:00
|
|
|
|
2020-05-25 01:37:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-07-14 09:19:43 +00:00
|
|
|
pname = "lvm2" + stdenv.lib.optionalString enableDmeventd "with-dmeventd";
|
2020-08-17 00:01:05 +00:00
|
|
|
version = "2.03.10";
|
2011-08-18 13:05:03 +00:00
|
|
|
|
2020-04-30 14:45:17 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://mirrors.kernel.org/sourceware/lvm2/LVM2.${version}.tgz";
|
2020-08-17 00:01:05 +00:00
|
|
|
sha256 = "1l0fkn9abrgk5mfn6jfh9qhdr86b59l1c5pk6lp8jh0491d69las";
|
2006-12-23 23:16:04 +00:00
|
|
|
};
|
2011-08-18 13:05:03 +00:00
|
|
|
|
2019-08-19 00:06:10 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ udev libuuid thin-provisioning-tools libaio ];
|
|
|
|
|
2015-08-19 00:01:13 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-readline"
|
|
|
|
"--enable-pkgconfig"
|
2020-05-21 20:03:50 +00:00
|
|
|
"--with-default-locking-dir=/run/lock/lvm"
|
|
|
|
"--with-default-run-dir=/run/lvm"
|
|
|
|
"--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
|
2020-07-14 09:19:43 +00:00
|
|
|
] ++ stdenv.lib.optionals (!enableCmdlib) [
|
2020-07-12 09:29:38 +00:00
|
|
|
"--bindir=${placeholder "bin"}/bin"
|
|
|
|
"--sbindir=${placeholder "bin"}/bin"
|
|
|
|
"--libdir=${placeholder "lib"}/lib"
|
2020-07-14 09:19:43 +00:00
|
|
|
] ++ stdenv.lib.optional enableCmdlib "--enable-cmdlib"
|
|
|
|
++ stdenv.lib.optionals enableDmeventd [
|
2020-05-21 20:03:50 +00:00
|
|
|
"--enable-dmeventd"
|
|
|
|
"--with-dmeventd-pidfile=/run/dmeventd/pid"
|
|
|
|
"--with-default-dm-run-dir=/run/dmeventd"
|
2020-07-12 09:29:38 +00:00
|
|
|
] ++ stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
2017-10-29 21:02:14 +00:00
|
|
|
"ac_cv_func_malloc_0_nonnull=yes"
|
|
|
|
"ac_cv_func_realloc_0_nonnull=yes"
|
2019-08-19 00:06:10 +00:00
|
|
|
] ++
|
|
|
|
stdenv.lib.optionals (udev != null) [
|
|
|
|
"--enable-udev_rules"
|
|
|
|
"--enable-udev_sync"
|
2017-10-29 21:02:14 +00:00
|
|
|
];
|
2015-08-19 00:01:13 +00:00
|
|
|
|
2019-08-19 00:06:10 +00:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i /DEFAULT_SYS_DIR/d Makefile.in
|
|
|
|
sed -i /DEFAULT_PROFILE_DIR/d conf/Makefile.in
|
|
|
|
substituteInPlace scripts/lvm2_activation_generator_systemd_red_hat.c \
|
|
|
|
--replace /usr/bin/udevadm /run/current-system/systemd/bin/udevadm
|
2020-07-12 16:09:08 +00:00
|
|
|
# https://github.com/lvmteam/lvm2/issues/36
|
|
|
|
substituteInPlace udev/69-dm-lvm-metad.rules.in \
|
|
|
|
--replace "(BINDIR)/systemd-run" /run/current-system/systemd/bin/systemd-run
|
2011-08-18 13:05:03 +00:00
|
|
|
|
2019-08-19 00:06:10 +00:00
|
|
|
substituteInPlace make.tmpl.in --replace "@systemdsystemunitdir@" "$out/lib/systemd/system"
|
|
|
|
substituteInPlace libdm/make.tmpl.in --replace "@systemdsystemunitdir@" "$out/lib/systemd/system"
|
|
|
|
'';
|
2014-04-15 16:02:07 +00:00
|
|
|
|
2020-05-24 00:25:18 +00:00
|
|
|
postConfigure = ''
|
|
|
|
sed -i 's|^#define LVM_CONFIGURE_LINE.*$|#define LVM_CONFIGURE_LINE "<removed>"|g' ./include/configure.h
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
2018-01-14 06:55:12 +00:00
|
|
|
patches = stdenv.lib.optionals stdenv.hostPlatform.isMusl [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "fix-stdio-usage.patch";
|
2020-05-15 15:58:27 +00:00
|
|
|
url = "https://git.alpinelinux.org/aports/plain/main/lvm2/fix-stdio-usage.patch?h=3.7-stable&id=31bd4a8c2dc00ae79a821f6fe0ad2f23e1534f50";
|
2018-01-14 06:55:12 +00:00
|
|
|
sha256 = "0m6wr6qrvxqi2d2h054cnv974jq1v65lqxy05g1znz946ga73k3p";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "mallinfo.patch";
|
2020-05-15 15:58:27 +00:00
|
|
|
url = "https://git.alpinelinux.org/aports/plain/main/lvm2/mallinfo.patch?h=3.7-stable&id=31bd4a8c2dc00ae79a821f6fe0ad2f23e1534f50";
|
2018-01-14 06:55:12 +00:00
|
|
|
sha256 = "0g6wlqi215i5s30bnbkn8w7axrs27y3bnygbpbnf64wwx7rxxlj0";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "mlockall-default-config.patch";
|
2020-05-15 15:58:27 +00:00
|
|
|
url = "https://git.alpinelinux.org/aports/plain/main/lvm2/mlockall-default-config.patch?h=3.7-stable&id=31bd4a8c2dc00ae79a821f6fe0ad2f23e1534f50";
|
2018-01-14 06:55:12 +00:00
|
|
|
sha256 = "1ivbj3sphgf8n1ykfiv5rbw7s8dgnj5jcr9jl2v8cwf28lkacw5l";
|
|
|
|
})
|
|
|
|
];
|
2011-08-18 13:05:03 +00:00
|
|
|
|
2018-04-25 03:20:18 +00:00
|
|
|
doCheck = false; # requires root
|
|
|
|
|
2019-08-19 00:06:10 +00:00
|
|
|
makeFlags = stdenv.lib.optionals (udev != null) [
|
|
|
|
"SYSTEMD_GENERATOR_DIR=$(out)/lib/systemd/system-generators"
|
|
|
|
];
|
|
|
|
|
2006-12-23 23:16:04 +00:00
|
|
|
# To prevent make install from failing.
|
2019-11-15 10:36:01 +00:00
|
|
|
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.
|
2019-08-19 00:06:10 +00:00
|
|
|
installTargets = [ "install" ] ++ stdenv.lib.optionals (udev != null) [
|
|
|
|
"install_systemd_generators"
|
|
|
|
"install_systemd_units"
|
|
|
|
"install_tmpfiles_configuration"
|
|
|
|
];
|
2012-08-16 19:36:25 +00:00
|
|
|
|
2020-07-12 09:29:38 +00:00
|
|
|
# only split bin and lib out from out if cmdlib isn't enabled
|
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
"dev"
|
|
|
|
"man"
|
2020-07-14 09:19:43 +00:00
|
|
|
] ++ stdenv.lib.optionals (enableCmdlib != true) [
|
2020-07-12 09:29:38 +00:00
|
|
|
"bin"
|
|
|
|
"lib"
|
|
|
|
];
|
|
|
|
|
2020-07-14 09:19:43 +00:00
|
|
|
postInstall = stdenv.lib.optionalString (enableCmdlib != true) ''
|
2020-05-24 00:27:51 +00:00
|
|
|
moveToOutput lib/libdevmapper.so $lib
|
|
|
|
'';
|
|
|
|
|
2020-07-14 10:56:26 +00:00
|
|
|
passthru.tests.installer = nixosTests.installer.lvm;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://sourceware.org/lvm2/";
|
2017-04-29 04:24:34 +00:00
|
|
|
description = "Tools to support Logical Volume Management (LVM) on Linux";
|
2018-08-17 20:30:55 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = with licenses; [ gpl2 bsd2 lgpl21 ];
|
2020-05-21 23:59:29 +00:00
|
|
|
maintainers = with maintainers; [ raskin ajs124 ];
|
2010-01-07 16:14:10 +00:00
|
|
|
};
|
2006-12-23 23:16:04 +00:00
|
|
|
}
|