Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / libndp / default.nix
blob6109c48b036e0bbdc5cc02af1e43b3e0b1ae23fc
1 { lib, stdenv, fetchurl, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "libndp";
5   version = "1.8";
7   src = fetchurl {
8     url = "http://libndp.org/files/libndp-${version}.tar.gz";
9     sha256 = "sha256-iP+2buLrUn8Ub1wC9cy8OLqX0rDVfrRr+6SIghqwwCs=";
10   };
12   nativeBuildInputs = [ autoreconfHook ];
14   meta = with lib; {
15     homepage = "http://libndp.org/";
16     description = "Library for Neighbor Discovery Protocol";
17     platforms = platforms.linux;
18     maintainers = [ ];
19     license = licenses.lgpl21;
20   };