nixpkgs/pkgs/os-specific/linux/lvm2/default.nix

90 lines
3 KiB
Nix
Raw Normal View History

{ stdenv
, fetchpatch
, fetchurl
, pkgconfig
, utillinux
, libuuid
, thin-provisioning-tools, libaio
, enable_dmeventd ? false
, udev ? null
}:
2020-05-25 01:37:44 +00:00
stdenv.mkDerivation rec {
pname = "lvm2" + stdenv.lib.optionalString enable_dmeventd "with-dmeventd";
2020-05-25 01:37:44 +00:00
version = "2.03.09";
src = fetchurl {
url = "https://mirrors.kernel.org/sourceware/lvm2/LVM2.${version}.tgz";
2020-05-25 01:37:44 +00:00
sha256 = "0xdr9qbqw6kja267wmx6ajnfv1nhw056gpxx9v2qmfh3bj6qnfn0";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ udev libuuid thin-provisioning-tools libaio ];
2015-08-19 00:01:13 +00:00
configureFlags = [
"--disable-readline"
"--enable-pkgconfig"
"--enable-cmdlib"
2017-10-29 21:02:14 +00:00
] ++ 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"
] ++
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
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
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
2018-01-14 06:55:12 +00:00
patches = stdenv.lib.optionals stdenv.hostPlatform.isMusl [
(fetchpatch {
name = "fix-stdio-usage.patch";
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";
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";
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";
})
];
doCheck = false; # requires root
makeFlags = stdenv.lib.optionals (udev != null) [
"SYSTEMD_GENERATOR_DIR=$(out)/lib/systemd/system-generators"
];
# To prevent make install from failing.
2019-11-15 10:36:01 +00:00
installFlags = [ "OWNER=" "GROUP=" "confdir=$(out)/etc" ];
2012-08-16 19:36:25 +00:00
# Install systemd stuff.
installTargets = [ "install" ] ++ stdenv.lib.optionals (udev != null) [
"install_systemd_generators"
"install_systemd_units"
"install_tmpfiles_configuration"
];
2012-08-16 19:36:25 +00:00
2018-08-17 20:30:55 +00:00
meta = with stdenv.lib; {
homepage = "http://sourceware.org/lvm2/";
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 ];
};
}