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

28 lines
729 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchurl, pkg-config, libdaemon, bison, flex, check }:
stdenv.mkDerivation rec {
pname = "radvd";
2021-02-01 11:32:29 +00:00
version = "2.19";
2016-02-26 23:03:00 +00:00
src = fetchurl {
url = "http://www.litech.org/radvd/dist/${pname}-${version}.tar.xz";
2021-02-01 11:32:29 +00:00
sha256 = "0h722f17h7cra1sjgrxhrrvx54mm47fs039909yhbabigxch8kjn";
};
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config bison flex check ];
2017-01-14 13:18:08 +00:00
buildInputs = [ libdaemon ];
2016-02-26 23:03:00 +00:00
# Needed for cross-compilation
makeFlags = [
"AR=${stdenv.cc.targetPrefix}ar"
];
meta = with 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
};
}