28395e85da
Fix CVE-2016-3698. See https://lwn.net/Articles/688591/.
20 lines
460 B
Nix
20 lines
460 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libndp-1.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://libndp.org/files/${name}.tar.gz";
|
|
sha256 = "03mczwrxqbp54msafxzzyhaazkvjdwm2kipjkrb5xg8kw22glz8c";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://libndp.org/;
|
|
description = "Library for Neighbor Discovery Protocol";
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.lethalman ];
|
|
license = licenses.lgpl21;
|
|
};
|
|
|
|
}
|