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 {
2015-01-08 03:21:44 +01:00
name = "radvd-2.9";
src = fetchurl {
2014-08-24 11:51:04 +02:00
url = "http://www.litech.org/radvd/dist/${name}.tar.xz";
2015-01-08 03:21:44 +01:00
sha256 = "1f5sbfh1va02nlrp5jx8zshyjqpz07ga15jx9kqphqzwlwxsspjj";
};
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 ];
};
}