Skip to content

Commit

Permalink
cmus: use libcdio-paranoia
Browse files Browse the repository at this point in the history
  • Loading branch information
pbogdan authored and vcunat committed Mar 5, 2018
1 parent 2cc7ac1 commit 7125190
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/audio/cmus/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down
1 change: 0 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7125190

Please sign in to comment.