nixpkgs/pkgs/tools/networking/radvd/default.nix

23 lines
645 B
Nix
Raw Normal View History

2014-08-24 09:51:04 +00:00
{ stdenv, fetchurl, pkgconfig, libdaemon, bison, flex, check }:
stdenv.mkDerivation rec {
2017-01-14 13:18:08 +00:00
name = "radvd-${version}";
2017-07-31 10:47:37 +00:00
version = "2.17";
2016-02-26 23:03:00 +00:00
src = fetchurl {
2014-08-24 09:51:04 +00:00
url = "http://www.litech.org/radvd/dist/${name}.tar.xz";
2017-07-31 10:47:37 +00:00
sha256 = "1md6n63sg1n9x8yv0p7fwm1xxaiadj1q3mpadiqsvn14y1ddc2av";
};
2017-01-14 13:18:08 +00:00
nativeBuildInputs = [ pkgconfig bison flex check ];
buildInputs = [ libdaemon ];
2016-02-26 23:03:00 +00:00
2014-08-24 09:51:04 +00:00
meta = with stdenv.lib; {
homepage = http://www.litech.org/radvd/;
description = "IPv6 Router Advertisement Daemon";
platforms = platforms.linux;
license = licenses.bsdOriginal;
2016-02-25 15:50:37 +00:00
maintainers = with maintainers; [ wkennington fpletz ];
2014-08-24 09:51:04 +00:00
};
}