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