3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libndp/default.nix

19 lines
459 B
Nix
Raw Normal View History

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