Skip to content

Commit

Permalink
quagga: 1.0.20161017 -> 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tavyc committed Feb 17, 2017
1 parent 4798196 commit dcc84d8
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkgs/servers/quagga/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
{ stdenv, fetchurl, libcap, libnl, readline, net_snmp, less, perl, texinfo }:
{ stdenv, fetchurl, libcap, libnl, readline, net_snmp, less, perl, texinfo,
pkgconfig, c-ares }:

stdenv.mkDerivation rec {
name = "quagga-${version}";
version = "1.0.20161017";
version = "1.2.0";

src = fetchurl {
url = "mirror://savannah/quagga/${name}.tar.gz";
sha256 = "0629f7bkyh0a3n90kkr202g2i44id09qzkl05y8z66blvd6p49lg";
sha256 = "1qyw675hrs3f67zprdbyw91wldmyihv97ibn1f99ypcp6x6n8hqh";
};

buildInputs =
[ readline net_snmp ]
[ readline net_snmp c-ares ]
++ stdenv.lib.optionals stdenv.isLinux [ libcap libnl ];

nativeBuildInputs = [ perl texinfo ];
nativeBuildInputs = [ pkgconfig perl texinfo ];

configureFlags = [
"--sysconfdir=/etc/quagga"
Expand Down

0 comments on commit dcc84d8

Please sign in to comment.