remove unfree from ffmpeg

This commit is contained in:
Mateusz Słodkowicz 2023-05-18 23:45:15 +02:00
parent b99fa7826b
commit b0cc7e61c1
Signed by: materus
GPG Key ID: 28D140BCA60B4FD1
1 changed files with 2 additions and 2 deletions

View File

@ -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 ];