nixpkgs/pkgs/development/libraries/libndp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
522 B
Nix
Raw Normal View History

2021-12-12 08:33:10 +00:00
{ lib, stdenv, fetchurl, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "libndp";
version = "1.8";
src = fetchurl {
url = "http://libndp.org/files/libndp-${version}.tar.gz";
2021-05-23 04:05:53 +00:00
sha256 = "sha256-iP+2buLrUn8Ub1wC9cy8OLqX0rDVfrRr+6SIghqwwCs=";
};
2021-12-12 08:33:10 +00:00
nativeBuildInputs = [ autoreconfHook ];
meta = with lib; {
homepage = "http://libndp.org/";
description = "Library for Neighbor Discovery Protocol";
platforms = platforms.linux;
maintainers = [ ];
license = licenses.lgpl21;
};
}