2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, gzip }:
|
2016-12-31 09:58:25 +00:00
|
|
|
|
2019-02-03 13:37:55 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ndppd";
|
2016-12-31 09:58:25 +00:00
|
|
|
version = "0.2.5";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "DanielAdolfsson";
|
|
|
|
repo = "ndppd";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2016-12-31 09:58:25 +00:00
|
|
|
sha256 = "0niri5q9qyyyw5lmjpxk19pv3v4srjvmvyd5k6ks99mvqczjx9c0";
|
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace Makefile --replace /bin/gzip ${gzip}/bin/gzip
|
|
|
|
'';
|
|
|
|
|
2018-05-05 06:33:20 +01:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/etc
|
|
|
|
cp ndppd.conf-dist $out/etc/ndppd.conf
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-12-31 09:58:25 +00:00
|
|
|
description = "A daemon that proxies NDP (Neighbor Discovery Protocol) messages between interfaces";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/DanielAdolfsson/ndppd";
|
2019-08-20 18:36:05 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ fadenb globin ];
|
2016-12-31 09:58:25 +00:00
|
|
|
};
|
|
|
|
}
|