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

21 lines
586 B
Nix
Raw Normal View History

2014-08-24 11:51:04 +02:00
{ stdenv, fetchurl, pkgconfig, libdaemon, bison, flex, check }:
stdenv.mkDerivation rec {
2014-09-15 10:30:42 +02:00
name = "radvd-2.6";
src = fetchurl {
2014-08-24 11:51:04 +02:00
url = "http://www.litech.org/radvd/dist/${name}.tar.xz";
2014-09-15 10:30:42 +02:00
sha256 = "1vp86a2jcrrbyc62rglby3nx11i8rz5bsxbh6bp6049a0s9m4k4r";
};
2014-08-24 11:51:04 +02:00
buildInputs = [ pkgconfig libdaemon bison flex check ];
2014-08-24 11:51:04 +02:00
meta = with stdenv.lib; {
homepage = http://www.litech.org/radvd/;
description = "IPv6 Router Advertisement Daemon";
platforms = platforms.linux;
license = licenses.bsdOriginal;
maintainers = with maintainers; [ wkennington ];
};
}