Skip to content

Commit

Permalink
Merge pull request #121908 from dotlambda/ffmpeg_2-insecure
Browse files Browse the repository at this point in the history
[20.09] ffmpeg_2: mark as insecure
  • Loading branch information
dotlambda committed May 8, 2021
2 parents ead1fde + 3a5bdee commit 3299d1b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions pkgs/development/libraries/ffmpeg/2.8.nix
Expand Up @@ -4,4 +4,7 @@ callPackage ./generic.nix (rec {
version = "${branch}.17";
branch = "2.8";
sha256 = "05bnhvs2f82aq95z1wd3wr42sljdfq4kiyzqwhpji983mndx14vl";
knownVulnerabilities = [
"CVE-2021-30123"
];
} // args)
4 changes: 2 additions & 2 deletions pkgs/development/libraries/ffmpeg/generic.nix
Expand Up @@ -17,7 +17,7 @@
# Darwin frameworks
, Cocoa, darwinFrameworks ? [ Cocoa ]
# Inherit generics
, branch, sha256, version, patches ? [], ...
, branch, sha256, version, patches ? [], knownVulnerabilities ? [], ...
}:

/* Maintainer notes:
Expand Down Expand Up @@ -224,6 +224,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl3;
platforms = platforms.all;
maintainers = with maintainers; [ codyopel ];
inherit branch;
inherit branch knownVulnerabilities;
};
}

0 comments on commit 3299d1b

Please sign in to comment.