Merge pull request #141060 from lukegb/keepalived

keepalived: 2.2.2 -> 2.2.4

authored by Luke Granger-Brown and committed by GitHub 5735b5eb eb88cf6e

+11 -6
+11 -6
pkgs/tools/networking/keepalived/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, nixosTests 2 - , libnfnetlink, libnl, net-snmp, openssl 3 - , pkg-config, autoreconfHook }: 2 + , file, libmnl, libnftnl, libnl 3 + , net-snmp, openssl, pkg-config 4 + , autoreconfHook }: 4 5 5 6 stdenv.mkDerivation rec { 6 7 pname = "keepalived"; 7 - version = "2.2.2"; 8 + version = "2.2.4"; 8 9 9 10 src = fetchFromGitHub { 10 11 owner = "acassen"; 11 12 repo = "keepalived"; 12 13 rev = "v${version}"; 13 - sha256 = "sha256-qugEEbOQ4bemzelIOaNFvo3piMZpKUZGjR+4XF8aLHw="; 14 + sha256 = "sha256-WXKu+cabMmXNHiLwXrQqS8GQHIWYkee7vPddyGURWic="; 14 15 }; 15 16 16 17 buildInputs = [ 17 - libnfnetlink 18 + file 19 + libmnl 20 + libnftnl 18 21 libnl 19 22 net-snmp 20 23 openssl 21 24 ]; 25 + 26 + enableParallelBuilding = true; 22 27 23 28 passthru.tests.keepalived = nixosTests.keepalived; 24 29 ··· 32 37 meta = with lib; { 33 38 homepage = "https://keepalived.org"; 34 39 description = "Routing software written in C"; 35 - license = licenses.gpl2; 40 + license = licenses.gpl2Plus; 36 41 platforms = platforms.linux; 37 42 }; 38 43 }