From b0cc7e61c17517f74a3c3fd2ea9d6122c5116474 Mon Sep 17 00:00:00 2001 From: materus Date: Thu, 18 May 2023 23:45:15 +0200 Subject: [PATCH] remove unfree from ffmpeg --- pkgs/apps/ffmpeg/generic.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/apps/ffmpeg/generic.nix b/pkgs/apps/ffmpeg/generic.nix index 8e6ac65..883db59 100644 --- a/pkgs/apps/ffmpeg/generic.nix +++ b/pkgs/apps/ffmpeg/generic.nix @@ -116,7 +116,7 @@ */ , withGPL ? true , withGPLv3 ? true -, withUnfree ? true +, withUnfree ? false /* * Build options @@ -703,7 +703,7 @@ stdenv.mkDerivation (finalAttrs: { license = with licenses; [ lgpl21Plus ] ++ optional withGPL gpl2Plus ++ optional withGPLv3 gpl3Plus - ++ optional withUnfree unfree; + ++ optional withUnfree unfreeRedistributable; pkgConfigModules = [ "libavutil" ]; platforms = platforms.all; maintainers = with maintainers; [ atemu ];