nixpkgs/pkgs/development/libraries/libndp/default.nix
Luca Bruno 97d5a55dd7 libndp: add new package
Library for Neighbor Discovery Protocol.

Will be needed for the new networkmanager.

http://libndp.org/
2014-11-17 14:55:45 +01:00

19 lines
459 B
Nix

{ 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;
};
}