cmus: use libcdio-paranoia

This commit is contained in:
Piotr Bogdan 2018-03-04 18:30:09 +00:00 committed by Vladimír Čunát
parent 2cc7ac19b6
commit 7125190b04
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
2 changed files with 2 additions and 3 deletions

View File

@ -17,7 +17,7 @@
#, waveoutSupport
, cddbSupport ? true, libcddb ? null
, cdioSupport ? true, libcdio ? null
, cdioSupport ? true, libcdio ? null, libcdio-paranoia ? null
, cueSupport ? true, libcue ? null
, discidSupport ? (!stdenv.isDarwin), libdiscid ? null
, ffmpegSupport ? true, ffmpeg ? null
@ -69,7 +69,7 @@ let
# Input file formats
(mkFlag cddbSupport "CONFIG_CDDB=y" libcddb)
(mkFlag cdioSupport "CONFIG_CDIO=y" libcdio)
(mkFlag cdioSupport "CONFIG_CDIO=y" [ libcdio libcdio-paranoia ])
(mkFlag cueSupport "CONFIG_CUE=y" libcue)
(mkFlag discidSupport "CONFIG_DISCID=y" libdiscid)
(mkFlag ffmpegSupport "CONFIG_FFMPEG=y" ffmpeg)

View File

@ -14829,7 +14829,6 @@ with pkgs;
cmus = callPackage ../applications/audio/cmus {
inherit (darwin.apple_sdk.frameworks) CoreAudio;
libjack = libjack2;
libcdio = libcdio082;
ffmpeg = ffmpeg_2;
pulseaudioSupport = config.pulseaudio or false;