2021-12-12 08:33:10 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoreconfHook }:
|
2014-11-17 13:55:45 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-11-09 21:14:04 +00:00
|
|
|
pname = "libndp";
|
|
|
|
version = "1.8";
|
2014-11-17 13:55:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-11-09 21:14:04 +00:00
|
|
|
url = "http://libndp.org/files/libndp-${version}.tar.gz";
|
2021-05-23 04:05:53 +00:00
|
|
|
sha256 = "sha256-iP+2buLrUn8Ub1wC9cy8OLqX0rDVfrRr+6SIghqwwCs=";
|
2014-11-17 13:55:45 +00:00
|
|
|
};
|
|
|
|
|
2021-12-12 08:33:10 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://libndp.org/";
|
2014-11-17 13:55:45 +00:00
|
|
|
description = "Library for Neighbor Discovery Protocol";
|
|
|
|
platforms = platforms.linux;
|
2021-05-07 13:35:21 +00:00
|
|
|
maintainers = [ ];
|
2014-11-17 13:55:45 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
};
|
|
|
|
|
2016-05-26 15:04:00 +00:00
|
|
|
}
|