summary refs log tree commit diff
path: root/pkgs/development/libraries/libndp/default.nix
blob: ae0db409a1a5586a4e14b01f5ac39d6c3f70128d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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;
  };

}