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

21 lines
587 B
Nix
Raw Normal View History

2014-08-24 11:51:04 +02:00
{ stdenv, fetchurl, pkgconfig, libdaemon, bison, flex, check }:
stdenv.mkDerivation rec {
2015-05-05 08:18:26 +02:00
name = "radvd-2.11";
src = fetchurl {
2014-08-24 11:51:04 +02:00
url = "http://www.litech.org/radvd/dist/${name}.tar.xz";
2015-05-05 08:18:26 +02:00
sha256 = "1k2sbfs4w2lkgz2mh4zh66fgahjrn2hvxcpfc091bykrzj464qq4";
};
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 ];
};
}