3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/radvd/default.nix

21 lines
587 B
Nix
Raw Normal View History

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