swftools: mark insecure; clarify license
Fixes: https://github.com/NixOS/nixpkgs/issues/90991
This commit is contained in:
parent
b1037225ef
commit
6694363a3a
@ -1,6 +1,5 @@
|
|||||||
{ lib, stdenv, fetchurl, freetype, libjpeg, libungif, zlib }:
|
{ lib, stdenv, fetchurl, freetype, libjpeg, libungif, zlib }:
|
||||||
|
|
||||||
with lib;
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "swftools";
|
pname = "swftools";
|
||||||
version = "0.9.2";
|
version = "0.9.2";
|
||||||
@ -14,11 +13,28 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
buildInputs = [ freetype libjpeg libungif zlib ];
|
buildInputs = [ freetype libjpeg libungif zlib ];
|
||||||
|
|
||||||
meta = {
|
meta = with lib; {
|
||||||
description = "Collection of SWF manipulation and creation utilities";
|
description = "Collection of SWF manipulation and creation utilities";
|
||||||
homepage = "http://www.swftools.org/about.html";
|
homepage = "http://www.swftools.org/about.html";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2Only;
|
||||||
maintainers = [ maintainers.koral ];
|
maintainers = [ maintainers.koral ];
|
||||||
platforms = lib.platforms.unix;
|
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"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user