nixpkgs/pkgs/servers/corosync/default.nix

62 lines
1.7 KiB
Nix
Raw Normal View History

2014-10-08 08:38:14 +00:00
{ stdenv, fetchurl, makeWrapper, pkgconfig, nss, nspr, libqb
, dbus, librdmacm, libibverbs, libstatgrab, net_snmp
, enableDbus ? false
, enableInfiniBandRdma ? false
, enableMonitoring ? false
, enableSnmp ? false
2014-10-08 08:38:14 +00:00
}:
with stdenv.lib;
2014-10-08 08:38:14 +00:00
stdenv.mkDerivation rec {
name = "corosync-2.4.2";
2014-10-08 08:38:14 +00:00
src = fetchurl {
url = "http://build.clusterlabs.org/corosync/releases/${name}.tar.gz";
sha256 = "1aab380mv4ivy5icmwvk7941jbs6ikm21p5ijk7brr4z608k0vpj";
2014-10-08 08:38:14 +00:00
};
nativeBuildInputs = [ makeWrapper pkgconfig ];
2014-10-08 08:38:14 +00:00
buildInputs = [
nss nspr libqb
] ++ optional enableDbus dbus
++ optional enableInfiniBandRdma [ librdmacm libibverbs ]
++ optional enableMonitoring libstatgrab
++ optional enableSnmp net_snmp;
2014-10-08 08:38:14 +00:00
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
"--with-logdir=/var/log/corosync"
2014-10-08 08:38:14 +00:00
"--enable-watchdog"
"--enable-qdevices"
] ++ optional enableDbus "--enable-dbus"
++ optional enableInfiniBandRdma "--enable-rdma"
++ optional enableMonitoring "--enable-monitoring"
++ optional enableSnmp "--enable-snmp";
installFlags = [
"sysconfdir=$(out)/etc"
"localstatedir=$(out)/var"
"COROSYSCONFDIR=$(out)/etc/corosync"
"INITDDIR=$(out)/etc/init.d"
"LOGROTATEDIR=$(out)/etc/logrotate.d"
];
2014-10-08 08:38:14 +00:00
postInstall = ''
wrapProgram $out/bin/corosync-blackbox \
--prefix PATH ":" "$out/sbin:${libqb}/sbin"
'';
enableParallelBuilding = true;
2014-10-08 08:38:14 +00:00
meta = {
homepage = http://corosync.org/;
2014-11-11 13:20:43 +00:00
description = "A Group Communication System with features for implementing high availability within applications";
2014-10-08 08:38:14 +00:00
license = licenses.bsd3;
2015-04-04 06:23:42 +00:00
platforms = platforms.linux;
maintainers = with maintainers; [ wkennington montag451 ];
2014-10-08 08:38:14 +00:00
};
}