Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / ucarp / default.nix
blob90cbc562d382ae07912408c5e05e3f9194fe6bb1
1 { stdenv, lib, fetchurl, libpcap }:
3 stdenv.mkDerivation rec {
4   pname = "ucarp";
5   version = "1.5.2";
7   src = fetchurl {
8     url = "https://download.pureftpd.org/pub/ucarp/ucarp-${version}.tar.bz2";
9     sha256 = "0qidz5sr55nxlmnl8kcbjsrff2j97b44h9l1dmhvvjl46iji7q7j";
10   };
12   buildInputs = [ libpcap ];
14   # Workaround build failure on -fno-common toolchains like upstream
15   # gcc-10. Otherwise build fails as:
16   #   ld: daemonize.o:/build/ucarp-1.5.2/src/ip_carp.h:73: multiple definition of
17   #     `__packed'; ucarp.o:/build/ucarp-1.5.2/src/ip_carp.h:73: first defined here
18   env.NIX_CFLAGS_COMPILE = "-fcommon";
20   meta = with lib; {
21     description = "Userspace implementation of CARP";
22     longDescription = ''
23       UCARP allows a couple of hosts to share common virtual IP addresses in
24       order to provide automatic failover. It is a portable userland
25       implementation of the secure and patent-free Common Address Redundancy
26       Protocol (CARP, OpenBSD's alternative to the patents-bloated VRRP).
28       Warning: This package has not received any upstream updates for a long
29       time and can be considered as unmaintained.
30     '';
31     license = with licenses; [ isc bsdOriginal bsd2 gpl2Plus ];
32     maintainers = with maintainers; [ oxzi ];
33     mainProgram = "ucarp";
34   };