mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ stdenv, fetchurl, flex, systemd, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "drbd-8.4.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://oss.linbit.com/drbd/8.4/${name}.tar.gz";
|
|
sha256 = "1w4889h1ak7gy9w33kd4fgjlfpgmp6hzfya16p1pkc13bjf22mm0";
|
|
};
|
|
|
|
patches = [ ./pass-force.patch ];
|
|
|
|
nativeBuildInputs = [ flex ];
|
|
buildInputs = [ perl ];
|
|
|
|
configureFlags = [
|
|
"--without-distro"
|
|
"--without-pacemaker"
|
|
"--localstatedir=/var"
|
|
"--sysconfdir=/etc"
|
|
];
|
|
|
|
preConfigure =
|
|
''
|
|
export PATH=${systemd}/sbin:$PATH
|
|
substituteInPlace user/Makefile.in \
|
|
--replace /sbin '$(sbindir)'
|
|
substituteInPlace user/legacy/Makefile.in \
|
|
--replace '$(DESTDIR)/lib/drbd' '$(DESTDIR)$(LIBDIR)'
|
|
substituteInPlace user/drbdadm_usage_cnt.c --replace /lib/drbd $out/lib/drbd
|
|
substituteInPlace scripts/drbd.rules --replace /usr/sbin/drbdadm $out/sbin/drbdadm
|
|
'';
|
|
|
|
makeFlags = [ "SHELL=${stdenv.shell}" ];
|
|
|
|
installFlags = [
|
|
"localstatedir=$(TMPDIR)/var"
|
|
"sysconfdir=$(out)/etc"
|
|
"INITDIR=$(out)/etc/init.d"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.drbd.org/;
|
|
description = "Distributed Replicated Block Device, a distributed storage system for Linux";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|