1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-13 16:15:30 +00:00
nixpkgs/pkgs/tools/networking/radvd/default.nix

23 lines
637 B
Nix
Raw Normal View History

2014-08-24 10:51:04 +01:00
{ stdenv, fetchurl, pkgconfig, libdaemon, bison, flex, check }:
stdenv.mkDerivation rec {
pname = "radvd";
version = "2.18";
2016-02-26 23:03:00 +00:00
src = fetchurl {
url = "http://www.litech.org/radvd/dist/${pname}-${version}.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/";
2014-08-24 10:51:04 +01:00
description = "IPv6 Router Advertisement Daemon";
platforms = platforms.linux;
license = licenses.bsdOriginal;
maintainers = with maintainers; [ fpletz ];
2014-08-24 10:51:04 +01:00
};
}