1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

libmicrohttpd_0_9_70: mark as insecure

This commit is contained in:
Yorick van Pelt 2022-10-10 08:02:52 +02:00
parent a9cd13546b
commit 4902637cc2
No known key found for this signature in database
GPG key ID: A36E70F9DC014A15
2 changed files with 7 additions and 2 deletions

View file

@ -7,4 +7,5 @@ callPackage ./generic.nix ( rec {
url = "mirror://gnu/libmicrohttpd/libmicrohttpd-${version}.tar.gz";
sha256 = "01vkjy89b1ylmh22dy5yza2r414nfwcfixxh3v29nvzrjv9s7l4h";
};
meta.knownVulnerabilities = [ "CVE-2021-3466" ];
})

View file

@ -1,4 +1,8 @@
{ lib, stdenv, libgcrypt, curl, gnutls, pkg-config, libiconv, libintl, version, src }:
{ lib, stdenv, libgcrypt, curl, gnutls, pkg-config, libiconv, libintl, version, src, meta ? {} }:
let
meta_ = meta;
in
stdenv.mkDerivation rec {
pname = "libmicrohttpd";
@ -30,5 +34,5 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ eelco vrthra fpletz ];
platforms = platforms.unix;
};
} // meta_;
}