Compare commits
1 Commits
f3efd6f932
...
e8955e977b
Author | SHA1 | Date | |
---|---|---|---|
e8955e977b |
@ -14,7 +14,7 @@
|
|||||||
, mp4Support ? false
|
, mp4Support ? false
|
||||||
, fdk-aac-encoder
|
, fdk-aac-encoder
|
||||||
, oggSupport ? false
|
, oggSupport ? false
|
||||||
, vorbisTools
|
, vorbis-tools
|
||||||
, opusSupport ? false
|
, opusSupport ? false
|
||||||
, opusTools
|
, opusTools
|
||||||
}:
|
}:
|
||||||
@ -23,7 +23,7 @@ assert aacSupport -> faac.meta.available;
|
|||||||
assert alacSupport -> libav.meta.available;
|
assert alacSupport -> libav.meta.available;
|
||||||
assert flacSupport -> flac.meta.available;
|
assert flacSupport -> flac.meta.available;
|
||||||
assert m4aSupport || mp4Support -> fdk-aac-encoder.meta.available;
|
assert m4aSupport || mp4Support -> fdk-aac-encoder.meta.available;
|
||||||
assert oggSupport -> vorbisTools.meta.available;
|
assert oggSupport -> vorbis-tools.meta.available;
|
||||||
assert opusSupport -> opusTools.meta.available;
|
assert opusSupport -> opusTools.meta.available;
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
@ -51,7 +51,7 @@ python3Packages.buildPythonApplication rec {
|
|||||||
(if alacSupport then libav else null)
|
(if alacSupport then libav else null)
|
||||||
(if aacSupport then faac else null)
|
(if aacSupport then faac else null)
|
||||||
(if (m4aSupport || mp4Support) then fdk-aac-encoder else null)
|
(if (m4aSupport || mp4Support) then fdk-aac-encoder else null)
|
||||||
(if oggSupport then vorbisTools else null)
|
(if oggSupport then vorbis-tools else null)
|
||||||
(if opusSupport then opusTools else null)
|
(if opusSupport then opusTools else null)
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user