about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-01-16 15:54:09 +0800
committerGitHub <noreply@github.com>2023-01-16 15:54:09 +0800
commitc85d08692966cf022b0a741a794cb1650602d8af (patch)
tree808563e0307a9c6992fd798ea5b72a203d66e3b9 /pkgs/applications/audio
parentd3a33fd310c970928e9ab16fc900e23e9e853012 (diff)
parent7766691094ff79aa1640725f338f871c09ae4c03 (diff)
Merge pull request #210885 from LeSuisse/fdk-aac-encoder-CVE-2022-37781
fdk-aac-encoder: apply patch for CVE-2022-37781
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/fdkaac/default.nix11
1 files changed, 10 insertions, 1 deletions
diff --git a/pkgs/applications/audio/fdkaac/default.nix b/pkgs/applications/audio/fdkaac/default.nix
index 7aef140da6518..be6e0fcca228a 100644
--- a/pkgs/applications/audio/fdkaac/default.nix
+++ b/pkgs/applications/audio/fdkaac/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, autoreconfHook, fetchFromGitHub, fdk_aac }:
+{ lib, stdenv, autoreconfHook, fetchFromGitHub, fetchpatch, fdk_aac }:
 
 stdenv.mkDerivation rec {
   pname = "fdkaac";
@@ -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 ];