Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchurl, autoreconfHook }: 2 3stdenv.mkDerivation rec { 4 pname = "libndp"; 5 version = "1.8"; 6 7 src = fetchurl { 8 url = "http://libndp.org/files/libndp-${version}.tar.gz"; 9 sha256 = "sha256-iP+2buLrUn8Ub1wC9cy8OLqX0rDVfrRr+6SIghqwwCs="; 10 }; 11 12 nativeBuildInputs = [ autoreconfHook ]; 13 14 meta = with lib; { 15 homepage = "http://libndp.org/"; 16 description = "Library for Neighbor Discovery Protocol"; 17 platforms = platforms.linux; 18 maintainers = [ ]; 19 license = licenses.lgpl21; 20 }; 21 22}