nixpkgs/pkgs/development/libraries/libndp/default.nix
Vladimír Čunát 73e17a3594
treewide: remove lethalman from meta.maintainers
He hasn't been heard of for years.
2021-05-07 15:36:40 +02:00

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;
};
}