libndp: add new package
Library for Neighbor Discovery Protocol. Will be needed for the new networkmanager. http://libndp.org/
This commit is contained in:
parent
310acaf1a0
commit
97d5a55dd7
|
@ -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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -5852,6 +5852,8 @@ let
|
||||||
|
|
||||||
libnatspec = callPackage ../development/libraries/libnatspec { };
|
libnatspec = callPackage ../development/libraries/libnatspec { };
|
||||||
|
|
||||||
|
libndp = callPackage ../development/libraries/libndp { };
|
||||||
|
|
||||||
libnfc = callPackage ../development/libraries/libnfc { };
|
libnfc = callPackage ../development/libraries/libnfc { };
|
||||||
|
|
||||||
libnfsidmap = callPackage ../development/libraries/libnfsidmap { };
|
libnfsidmap = callPackage ../development/libraries/libnfsidmap { };
|
||||||
|
|
Loading…
Reference in New Issue