summary refs log tree commit diff
path: root/pkgs/development/libraries/libndp/default.nix
blob: 524f948703f39d5ee56cfe9ddeb377c4a9bdf90f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "libndp-1.7";

  src = fetchurl {
    url = "http://libndp.org/files/${name}.tar.gz";
    sha256 = "1dlinhl39va00v55qygjc9ap77yqf7xvn4rwmvdr49xhzzxhlj1c";
  };

  meta = with lib; {
    homepage = "http://libndp.org/";
    description = "Library for Neighbor Discovery Protocol";
    platforms = platforms.linux;
    maintainers = [ ];
    license = licenses.lgpl21;
  };

}