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

23 lines
645 B
Nix
Raw Normal View History

2014-08-24 11:51:04 +02:00
{ stdenv, fetchurl, pkgconfig, libdaemon, bison, flex, check }:
stdenv.mkDerivation rec {
2017-01-14 14:18:08 +01:00
name = "radvd-${version}";
2017-02-02 19:27:12 +01:00
version = "2.16";
2016-02-27 00:03:00 +01:00
src = fetchurl {
2014-08-24 11:51:04 +02:00
url = "http://www.litech.org/radvd/dist/${name}.tar.xz";
2017-02-02 19:27:12 +01:00
sha256 = "1s3aqgn3db0wb4920b0mrvwb5isgijlb6izb1wliqhhashwffz1i";
};
2017-01-14 14:18:08 +01:00
nativeBuildInputs = [ pkgconfig bison flex check ];
buildInputs = [ libdaemon ];
2016-02-27 00:03:00 +01:00
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;
2016-02-25 16:50:37 +01:00
maintainers = with maintainers; [ wkennington fpletz ];
2014-08-24 11:51:04 +02:00
};
}