swftools: mark insecure; clarify license

Fixes: https://github.com/NixOS/nixpkgs/issues/90991
This commit is contained in:
Alyssa Ross 2021-02-12 20:51:31 +00:00
parent b1037225ef
commit 6694363a3a

View file

@ -1,6 +1,5 @@
{ lib, stdenv, fetchurl, freetype, libjpeg, libungif, zlib }:
with lib;
stdenv.mkDerivation rec {
pname = "swftools";
version = "0.9.2";
@ -14,11 +13,28 @@ stdenv.mkDerivation rec {
buildInputs = [ freetype libjpeg libungif zlib ];
meta = {
meta = with lib; {
description = "Collection of SWF manipulation and creation utilities";
homepage = "http://www.swftools.org/about.html";
license = licenses.gpl2;
license = licenses.gpl2Only;
maintainers = [ maintainers.koral ];
platforms = lib.platforms.unix;
broken = true;
knownVulnerabilities = [
"CVE-2017-10976"
"CVE-2017-11096"
"CVE-2017-11097"
"CVE-2017-11098"
"CVE-2017-11099"
"CVE-2017-11100"
"CVE-2017-11101"
"CVE-2017-16711"
"CVE-2017-16793"
"CVE-2017-16794"
"CVE-2017-16796"
"CVE-2017-16797"
"CVE-2017-16868"
"CVE-2017-16890"
];
};
}