libndp: add new package

Library for Neighbor Discovery Protocol.

Will be needed for the new networkmanager.

http://libndp.org/
This commit is contained in:
Luca Bruno 2014-11-17 14:55:45 +01:00
parent 310acaf1a0
commit 97d5a55dd7
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libndp-1.4";
src = fetchurl {
url = "http://libndp.org/files/${name}.tar.gz";
sha256 = "0pym5xxq3avg348q61xggwy05i0r2m4sj3mlwlpxfjq2xi3y42rs";
};
meta = with stdenv.lib; {
homepage = http://libndp.org/;
description = "Library for Neighbor Discovery Protocol";
platforms = platforms.linux;
maintainers = [ maintainers.lethalman ];
license = licenses.lgpl21;
};
}

View file

@ -5852,6 +5852,8 @@ let
libnatspec = callPackage ../development/libraries/libnatspec { };
libndp = callPackage ../development/libraries/libndp { };
libnfc = callPackage ../development/libraries/libnfc { };
libnfsidmap = callPackage ../development/libraries/libnfsidmap { };