mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
73e17a3594
He hasn't been heard of for years.
20 lines
438 B
Nix
20 lines
438 B
Nix
{ 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;
|
|
};
|
|
|
|
}
|