{ stdenv, fetchurl, openssl, net_snmp, libnl }: stdenv.mkDerivation rec { name = "keepalived-1.2.18"; src = fetchurl { url = "http://keepalived.org/software/${name}.tar.gz"; sha256 = "07l1ywg44zj2s3wn9mh6y7qbcc0cgp6q1q39hnm0c5iv5izakkg5"; }; buildInputs = [ openssl net_snmp libnl ]; postPatch = '' sed -i 's,$(DESTDIR)/usr/share,$out/share,g' Makefile.in ''; # It doesn't know about the include/libnl directory NIX_CFLAGS_COMPILE="-I${libnl}/include/libnl3"; NIX_LDFLAGS="-lnl-3 -lnl-genl-3"; configureFlags = [ "--sysconfdir=/etc" "--localstatedir=/var" "--enable-snmp" "--enable-sha1" ]; installFlags = [ "sysconfdir=\${out}/etc" ]; meta = with stdenv.lib; { homepage = http://keepalived.org; description = "routing software written in C"; license = licenses.gpl2; platforms = platforms.linux; maintainers = with maintainers; [ wkennington ]; }; }