2015-10-03 20:52:03 +02:00
|
|
|
{ stdenv, fetchurl, flex, systemd, perl }:
|
2011-11-01 16:21:31 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-11-21 03:23:40 +01:00
|
|
|
name = "drbd-8.4.4";
|
2011-11-01 16:21:31 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://oss.linbit.com/drbd/8.4/${name}.tar.gz";
|
2015-04-20 17:19:06 +02:00
|
|
|
sha256 = "1w4889h1ak7gy9w33kd4fgjlfpgmp6hzfya16p1pkc13bjf22mm0";
|
2011-11-01 16:21:31 +01:00
|
|
|
};
|
|
|
|
|
2020-01-20 18:29:31 +01:00
|
|
|
patches = [ ./pass-force.patch ./fix-glibc-compilation.patch ];
|
2011-11-02 19:54:49 +01:00
|
|
|
|
2019-01-09 17:45:53 +01:00
|
|
|
nativeBuildInputs = [ flex ];
|
|
|
|
buildInputs = [ perl ];
|
2011-11-01 16:21:31 +01:00
|
|
|
|
2018-07-25 23:44:21 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--without-distro"
|
|
|
|
"--without-pacemaker"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
];
|
2011-11-01 16:21:31 +01:00
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
''
|
2017-11-04 10:20:39 +01:00
|
|
|
export PATH=${systemd}/sbin:$PATH
|
2017-03-20 22:25:10 +01:00
|
|
|
substituteInPlace user/Makefile.in \
|
|
|
|
--replace /sbin '$(sbindir)'
|
2011-11-02 18:13:38 +01:00
|
|
|
substituteInPlace user/legacy/Makefile.in \
|
2017-03-20 22:25:10 +01:00
|
|
|
--replace '$(DESTDIR)/lib/drbd' '$(DESTDIR)$(LIBDIR)'
|
2011-11-02 18:13:38 +01:00
|
|
|
substituteInPlace user/drbdadm_usage_cnt.c --replace /lib/drbd $out/lib/drbd
|
2017-06-05 16:17:51 +02:00
|
|
|
substituteInPlace scripts/drbd.rules --replace /usr/sbin/drbdadm $out/sbin/drbdadm
|
2011-11-01 16:21:31 +01:00
|
|
|
'';
|
|
|
|
|
2019-10-27 14:03:25 +01:00
|
|
|
makeFlags = [ "SHELL=${stdenv.shell}" ];
|
2011-11-01 16:21:31 +01:00
|
|
|
|
2019-10-27 14:03:25 +01:00
|
|
|
installFlags = [
|
|
|
|
"localstatedir=$(TMPDIR)/var"
|
|
|
|
"sysconfdir=$(out)/etc"
|
|
|
|
"INITDIR=$(out)/etc/init.d"
|
|
|
|
];
|
2011-11-01 16:21:31 +01:00
|
|
|
|
2018-08-23 17:47:12 +02:00
|
|
|
meta = with stdenv.lib; {
|
2011-11-01 16:21:31 +01:00
|
|
|
homepage = http://www.drbd.org/;
|
|
|
|
description = "Distributed Replicated Block Device, a distributed storage system for Linux";
|
2018-08-23 17:47:12 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2011-11-01 16:21:31 +01:00
|
|
|
};
|
|
|
|
}
|