nixpkgs/pkgs/development/libraries/libndp/default.nix
William A. Kennington III 4468d52cbb libndp: 1.4 -> 1.5
2015-06-18 21:19:33 -07:00

19 lines
459 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libndp-1.5";
src = fetchurl {
url = "http://libndp.org/files/${name}.tar.gz";
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;
};
}