spotify-ripper: remove alac support
libav has been removed from nixpkgs
This commit is contained in:
@@ -6,8 +6,6 @@
|
|||||||
|
|
||||||
, aacSupport ? false
|
, aacSupport ? false
|
||||||
, faac
|
, faac
|
||||||
, alacSupport ? false
|
|
||||||
, libav
|
|
||||||
, flacSupport ? false
|
, flacSupport ? false
|
||||||
, flac
|
, flac
|
||||||
, m4aSupport ? false
|
, m4aSupport ? false
|
||||||
@@ -20,7 +18,6 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
assert aacSupport -> faac.meta.available;
|
assert aacSupport -> faac.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 -> vorbis-tools.meta.available;
|
assert oggSupport -> vorbis-tools.meta.available;
|
||||||
@@ -48,7 +45,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
]) ++ [
|
]) ++ [
|
||||||
lame
|
lame
|
||||||
(if flacSupport then flac else null)
|
(if flacSupport then flac 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 vorbis-tools else null)
|
(if oggSupport then vorbis-tools else null)
|
||||||
|
|||||||
Reference in New Issue
Block a user