2014-11-17 13:55:45 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-06-19 04:19:33 +00:00
|
|
|
name = "libndp-1.5";
|
2014-11-17 13:55:45 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://libndp.org/files/${name}.tar.gz";
|
2015-06-19 04:19:33 +00:00
|
|
|
sha256 = "15f743hjc7yy2sv3hzvfc27s1gny4mh5aww59vn195fff2midwgs";
|
2014-11-17 13:55:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://libndp.org/;
|
|
|
|
description = "Library for Neighbor Discovery Protocol";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.lethalman ];
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|