nixpkgs/pkgs/tools/networking/keepalived/default.nix

39 lines
794 B
Nix
Raw Normal View History

2019-12-22 08:45:31 +01:00
{ stdenv, fetchFromGitHub, nixosTests
2019-12-21 23:44:50 +01:00
, libnfnetlink, libnl, net-snmp, openssl
2019-12-21 23:41:11 +01:00
, pkgconfig, autoreconfHook }:
2015-06-27 23:33:21 +02:00
stdenv.mkDerivation rec {
pname = "keepalived";
2019-12-21 23:41:11 +01:00
version = "2.0.19";
2017-02-13 19:36:12 +01:00
src = fetchFromGitHub {
owner = "acassen";
repo = "keepalived";
rev = "v${version}";
2019-12-21 23:41:11 +01:00
sha256 = "05jgr0f04z69x3zf3b9z04wczl15fnh69bs6j0yw55fij1k9nj4d";
2015-06-27 23:33:21 +02:00
};
2017-02-13 19:36:12 +01:00
buildInputs = [
libnfnetlink
libnl
2019-12-21 23:44:50 +01:00
net-snmp
2017-02-13 19:36:12 +01:00
openssl
];
2015-06-27 23:33:21 +02:00
2019-12-22 08:45:31 +01:00
passthru.tests.keepalived = nixosTests.keepalived;
2019-12-21 23:41:11 +01:00
nativeBuildInputs = [ pkgconfig autoreconfHook ];
2015-06-28 04:59:44 +02:00
2015-06-27 23:33:21 +02:00
configureFlags = [
"--enable-sha1"
2017-02-13 19:36:12 +01:00
"--enable-snmp"
];
2015-06-27 23:33:21 +02:00
meta = with stdenv.lib; {
homepage = https://keepalived.org;
description = "Routing software written in C";
2015-06-27 23:33:21 +02:00
license = licenses.gpl2;
platforms = platforms.linux;
};
}