summary refs log tree commit diff
path: root/pkgs/applications/audio/cmus/default.nix
diff options
context:
space:
mode:
authorThomas Lotze <thomas@thomas-lotze.net>2017-02-23 00:18:56 +0100
committerJörg Thalheim <joerg@higgsboson.tk>2017-02-23 01:47:44 +0100
commit4689dd2a794eae486ccca35600e5144cea6242bd (patch)
treea9f1835881358bb4b91ddacc808f9b3b9bb9f30e /pkgs/applications/audio/cmus/default.nix
parent15c05ad21374f02c0b8de9c9f43ca9c143fb77d7 (diff)
downloadnixpkgs-4689dd2a794eae486ccca35600e5144cea6242bd.tar
nixpkgs-4689dd2a794eae486ccca35600e5144cea6242bd.tar.gz
nixpkgs-4689dd2a794eae486ccca35600e5144cea6242bd.tar.bz2
nixpkgs-4689dd2a794eae486ccca35600e5144cea6242bd.tar.lz
nixpkgs-4689dd2a794eae486ccca35600e5144cea6242bd.tar.xz
nixpkgs-4689dd2a794eae486ccca35600e5144cea6242bd.tar.zst
nixpkgs-4689dd2a794eae486ccca35600e5144cea6242bd.zip
cmus: enable opus support (re #23051)
Opus support was enabled since it didn't work in the past; I found it to be
working when I gave it a try now.
Diffstat (limited to 'pkgs/applications/audio/cmus/default.nix')
-rw-r--r--pkgs/applications/audio/cmus/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/cmus/default.nix b/pkgs/applications/audio/cmus/default.nix
index bb2deb71ba2..39774a76334 100644
--- a/pkgs/applications/audio/cmus/default.nix
+++ b/pkgs/applications/audio/cmus/default.nix
@@ -29,11 +29,11 @@
 , tremorSupport ? false, tremor ? null
 , vorbisSupport ? true, libvorbis ? null
 , wavpackSupport ? true, wavpack ? null
+, opusSupport ? true, opusfile ? null
 
 # can't make these work, something is broken
 #, aacSupport ? true, faac ? null
 #, mp4Support ? true, mp4v2 ? null
-#, opusSupport ? true, opusfile ? null
 
 # not in nixpkgs
 #, vtxSupport ? true, libayemu ? null
@@ -82,8 +82,8 @@ let
     (mkFlag tremorSupport  "CONFIG_TREMOR=y"  tremor)
     (mkFlag vorbisSupport  "CONFIG_VORBIS=y"  libvorbis)
     (mkFlag wavpackSupport "CONFIG_WAVPACK=y" wavpack)
+    (mkFlag opusSupport   "CONFIG_OPUS=y"    opusfile)
 
-    #(mkFlag opusSupport   "CONFIG_OPUS=y"    opusfile)
     #(mkFlag mp4Support    "CONFIG_MP4=y"     mp4v2)
     #(mkFlag aacSupport    "CONFIG_AAC=y"     faac)