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

23 lines
633 B
Nix
Raw Normal View History

2014-08-24 10:51:04 +01:00
{ stdenv, fetchurl, pkgconfig, libdaemon, bison, flex, check }:
stdenv.mkDerivation rec {
2017-01-14 13:18:08 +00:00
name = "radvd-${version}";
version = "2.18";
2016-02-26 23:03:00 +00:00
src = fetchurl {
2014-08-24 10:51:04 +01:00
url = "http://www.litech.org/radvd/dist/${name}.tar.xz";
sha256 = "1p2wlv3djvla0r84hdncc3wfa530xigs7z9ssc2v5r1pcpzgxgz1";
};
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 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; [ fpletz ];
2014-08-24 10:51:04 +01:00
};
}