ffmpeg_2: mark as insecure
This commit is contained in:
parent
ed42bcb6ff
commit
900fd5d09f
2 changed files with 5 additions and 2 deletions
|
@ -4,4 +4,7 @@ callPackage ./generic.nix (rec {
|
|||
version = "${branch}.17";
|
||||
branch = "2.8";
|
||||
sha256 = "05bnhvs2f82aq95z1wd3wr42sljdfq4kiyzqwhpji983mndx14vl";
|
||||
knownVulnerabilities = [
|
||||
"CVE-2021-30123"
|
||||
];
|
||||
} // args)
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
# Darwin frameworks
|
||||
, Cocoa, darwinFrameworks ? [ Cocoa ]
|
||||
# Inherit generics
|
||||
, branch, sha256, version, patches ? [], ...
|
||||
, branch, sha256, version, patches ? [], knownVulnerabilities ? [], ...
|
||||
}:
|
||||
|
||||
/* Maintainer notes:
|
||||
|
@ -224,6 +224,6 @@ stdenv.mkDerivation rec {
|
|||
license = licenses.gpl3;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ codyopel ];
|
||||
inherit branch;
|
||||
inherit branch knownVulnerabilities;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue