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