multipath-tools: 0.5.0 -> 0.6.2, fixes build

Was broken due to 78178d5854.
This commit is contained in:
Franz Pletz 2016-09-09 23:14:16 +02:00
parent f261f5fe34
commit c513e2ab39
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -1,15 +1,14 @@
{ stdenv, fetchurl, lvm2, libaio, gzip, readline, systemd }: { stdenv, fetchurl, lvm2, libaio, gzip, readline, systemd, liburcu }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "multipath-tools-0.5.0"; name = "multipath-tools-0.6.2";
src = fetchurl { src = fetchurl {
url = "http://christophe.varoqui.free.fr/multipath-tools/${name}.tar.bz2"; name = "${name}.tar.gz";
sha256 = "1yd6l1l1c62xjr1xnij2x49kr416anbgfs4y06r86kp9hkmz2g7i"; url = "http://git.opensvc.com/?p=multipath-tools/.git;a=snapshot;h=e165b73a16fc9027aa3306df40052038c175be1b;sf=tgz";
sha256 = "159hxvbk9kh1qay9x04w0gsqzg0hkl5yghfc1wi9kv2n5pcwbkpm";
}; };
hardeningDisable = [ "format" ];
postPatch = '' postPatch = ''
sed -i -re ' sed -i -re '
s,^( *#define +DEFAULT_MULTIPATHDIR\>).*,\1 "'"$out/lib/multipath"'", s,^( *#define +DEFAULT_MULTIPATHDIR\>).*,\1 "'"$out/lib/multipath"'",
@ -19,7 +18,7 @@ stdenv.mkDerivation rec {
''; '';
nativeBuildInputs = [ gzip ]; nativeBuildInputs = [ gzip ];
buildInputs = [ systemd lvm2 libaio readline ]; buildInputs = [ systemd lvm2 libaio readline liburcu ];
makeFlags = [ makeFlags = [
"LIB=lib" "LIB=lib"