6758d157d2
gzip is originally called as 'gzip -9 -c'
This is a port of
a8e7ddd1df
Note that it does not seem to make a difference to `nix-build --check`.
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ stdenv, fetchurl, lvm2, libaio, gzip, readline, systemd, liburcu }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "multipath-tools-0.6.2";
|
|
|
|
src = fetchurl {
|
|
name = "${name}.tar.gz";
|
|
url = "http://git.opensvc.com/?p=multipath-tools/.git;a=snapshot;h=e165b73a16fc9027aa3306df40052038c175be1b;sf=tgz";
|
|
sha256 = "159hxvbk9kh1qay9x04w0gsqzg0hkl5yghfc1wi9kv2n5pcwbkpm";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i -re '
|
|
s,^( *#define +DEFAULT_MULTIPATHDIR\>).*,\1 "'"$out/lib/multipath"'",
|
|
' libmultipath/defaults.h
|
|
sed -i -e 's,\$(DESTDIR)/\(usr/\)\?,$(prefix)/,g' \
|
|
kpartx/Makefile libmpathpersist/Makefile
|
|
sed -i -e "s,GZIP = .*, GZIP = gzip -9n -c," \
|
|
Makefile.inc
|
|
'';
|
|
|
|
nativeBuildInputs = [ gzip ];
|
|
buildInputs = [ systemd lvm2 libaio readline liburcu ];
|
|
|
|
makeFlags = [
|
|
"LIB=lib"
|
|
"prefix=$(out)"
|
|
"mandir=$(out)/share/man/man8"
|
|
"man5dir=$(out)/share/man/man5"
|
|
"man3dir=$(out)/share/man/man3"
|
|
"unitdir=$(out)/lib/systemd/system"
|
|
];
|
|
|
|
meta = {
|
|
description = "Tools for the Linux multipathing driver";
|
|
homepage = http://christophe.varoqui.free.fr/;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|