Skip to content

Commit

Permalink
Merge pull request #210885 from LeSuisse/fdk-aac-encoder-CVE-2022-37781
Browse files Browse the repository at this point in the history
fdk-aac-encoder: apply patch for CVE-2022-37781
  • Loading branch information
NickCao authored Jan 16, 2023
2 parents d3a33fd + 7766691 commit c85d086
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pkgs/applications/audio/fdkaac/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, autoreconfHook, fetchFromGitHub, fdk_aac }:
{ lib, stdenv, autoreconfHook, fetchFromGitHub, fetchpatch, fdk_aac }:

stdenv.mkDerivation rec {
pname = "fdkaac";
Expand All @@ -11,6 +11,15 @@ stdenv.mkDerivation rec {
sha256 = "sha256-7a8JlQtMGuMWgU/HePd31/EvtBNc2tBMz8V8NQivuNo=";
};

patches = [
# To be removed when 1.0.4 is released, see https://github.com/nu774/fdkaac/issues/54
(fetchpatch {
name = "CVE-2022-37781.patch";
url = "https://github.com/nu774/fdkaac/commit/ecddb7d63306e01d137d65bbbe7b78c1e779943c.patch";
sha256 = "sha256-uZPf5tqBmF7VWp1fJcjp5pbYGRfzqgPZpBHpkdWYkV0=";
})
];

nativeBuildInputs = [ autoreconfHook ];

buildInputs = [ fdk_aac ];
Expand Down

0 comments on commit c85d086

Please sign in to comment.