summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-09-14 10:48:03 +0000
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-09-14 14:45:48 +0000
commitc147fe79a57283f06a2e1f792edba49d2c5ecb80 (patch)
treeba5680b2bf8339eee063dbc8b8c1601e2cc6e59f
parentf38a57f07241c01dbba370e5b718e24169741f17 (diff)
downloadnixpkgs-c147fe79a57283f06a2e1f792edba49d2c5ecb80.tar
nixpkgs-c147fe79a57283f06a2e1f792edba49d2c5ecb80.tar.gz
nixpkgs-c147fe79a57283f06a2e1f792edba49d2c5ecb80.tar.bz2
nixpkgs-c147fe79a57283f06a2e1f792edba49d2c5ecb80.tar.lz
nixpkgs-c147fe79a57283f06a2e1f792edba49d2c5ecb80.tar.xz
nixpkgs-c147fe79a57283f06a2e1f792edba49d2c5ecb80.tar.zst
nixpkgs-c147fe79a57283f06a2e1f792edba49d2c5ecb80.zip
ffmpeg: set strictDeps
This will hopefully prevent cross compilation regressions.
-rw-r--r--pkgs/development/libraries/ffmpeg/generic.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/ffmpeg/generic.nix b/pkgs/development/libraries/ffmpeg/generic.nix
index bbdf154c6a2..31c93c52fb1 100644
--- a/pkgs/development/libraries/ffmpeg/generic.nix
+++ b/pkgs/development/libraries/ffmpeg/generic.nix
@@ -545,6 +545,8 @@ stdenv.mkDerivation (finalAttrs: {
   in
     "remove-references-to ${lib.concatStringsSep " " (map (o: "-t ${o}") toStrip)} config.h";
 
+  strictDeps = true;
+
   nativeBuildInputs = [ removeReferencesTo addOpenGLRunpath perl pkg-config texinfo yasm ]
   ++ optionals withCudaLLVM [ clang ];