tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ffmpeg: add snappy option
jopejoe1
2 years ago
d728271f
0de8c9af
+4
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
ffmpeg
generic.nix
+4
pkgs/development/libraries/ffmpeg/generic.nix
···
100
, withSamba ? withFullDeps && !stdenv.isDarwin && withGPLv3 # Samba protocol
101
, withSdl2 ? withSmallDeps
102
, withShaderc ? withFullDeps && !stdenv.isDarwin && lib.versionAtLeast version "5.0"
0
103
, withSoxr ? withHeadlessDeps # Resampling via soxr
104
, withSpeex ? withHeadlessDeps # Speex de/encoder
105
, withSrt ? withHeadlessDeps # Secure Reliable Transport (SRT) protocol
···
296
, samba
297
, SDL2
298
, shaderc
0
299
, soxr
300
, speex
301
, srt
···
659
] ++ optionals (versionAtLeast version "5.0") [
660
(enableFeature withShaderc "libshaderc")
661
] ++ [
0
662
(enableFeature withSoxr "libsoxr")
663
(enableFeature withSpeex "libspeex")
664
(enableFeature withSrt "libsrt")
···
798
++ optionals withSamba [ samba ]
799
++ optionals withSdl2 [ SDL2 ]
800
++ optionals withShaderc [ shaderc ]
0
801
++ optionals withSoxr [ soxr ]
802
++ optionals withSpeex [ speex ]
803
++ optionals withSrt [ srt ]
···
100
, withSamba ? withFullDeps && !stdenv.isDarwin && withGPLv3 # Samba protocol
101
, withSdl2 ? withSmallDeps
102
, withShaderc ? withFullDeps && !stdenv.isDarwin && lib.versionAtLeast version "5.0"
103
+
, withSnappy ? withFullDeps # Snappy compression, needed for hap encoding
104
, withSoxr ? withHeadlessDeps # Resampling via soxr
105
, withSpeex ? withHeadlessDeps # Speex de/encoder
106
, withSrt ? withHeadlessDeps # Secure Reliable Transport (SRT) protocol
···
297
, samba
298
, SDL2
299
, shaderc
300
+
, snappy
301
, soxr
302
, speex
303
, srt
···
661
] ++ optionals (versionAtLeast version "5.0") [
662
(enableFeature withShaderc "libshaderc")
663
] ++ [
664
+
(enableFeature withSnappy "libsnappy")
665
(enableFeature withSoxr "libsoxr")
666
(enableFeature withSpeex "libspeex")
667
(enableFeature withSrt "libsrt")
···
801
++ optionals withSamba [ samba ]
802
++ optionals withSdl2 [ SDL2 ]
803
++ optionals withShaderc [ shaderc ]
804
+
++ optionals withSnappy [ snappy ]
805
++ optionals withSoxr [ soxr ]
806
++ optionals withSpeex [ speex ]
807
++ optionals withSrt [ srt ]