ncmpcpp: 0.7.7 -> 0.8

authored by Johannes Frankenau and committed by vbgl 1add3519 6acb707f

+6 -12
+6 -12
pkgs/applications/audio/ncmpcpp/default.nix
··· 1 1 { stdenv, fetchurl, boost, mpd_clientlib, ncurses, pkgconfig, readline 2 - , libiconv, icu 2 + , libiconv, icu, curl 3 3 , outputsSupport ? false # outputs screen 4 4 , visualizerSupport ? false, fftw ? null # visualizer screen 5 5 , clockSupport ? false # clock screen 6 - , unicodeSupport ? true # utf8 support 7 - , curlSupport ? true, curl ? null # allow fetching lyrics from the internet 8 6 , taglibSupport ? true, taglib ? null # tag editor 9 7 }: 10 8 11 9 assert visualizerSupport -> (fftw != null); 12 - assert curlSupport -> (curl != null); 13 10 assert taglibSupport -> (taglib != null); 14 11 15 12 with stdenv.lib; 16 13 stdenv.mkDerivation rec { 17 14 name = "ncmpcpp-${version}"; 18 - version = "0.7.7"; 15 + version = "0.8"; 19 16 20 17 src = fetchurl { 21 18 url = "http://ncmpcpp.rybczak.net/stable/${name}.tar.bz2"; 22 - sha256 = "1vq19m36608pvw1g8nbcaqqb89wsw05v35pi45xwr20z7g4bxg5p"; 19 + sha256 = "0nj6ky805a55acj0w57sbn3vfmmkbqp97rhbi0q9848n10f2l3rg"; 23 20 }; 24 21 25 22 configureFlags = [ "BOOST_LIB_SUFFIX=" ] 26 23 ++ optional outputsSupport "--enable-outputs" 27 24 ++ optional visualizerSupport "--enable-visualizer --with-fftw" 28 25 ++ optional clockSupport "--enable-clock" 29 - ++ optional unicodeSupport "--enable-unicode" 30 - ++ optional curlSupport "--with-curl" 31 26 ++ optional taglibSupport "--with-taglib"; 32 27 33 28 nativeBuildInputs = [ pkgconfig ]; 34 29 35 - buildInputs = [ boost mpd_clientlib ncurses readline libiconv icu ] 36 - ++ optional curlSupport curl 30 + buildInputs = [ boost mpd_clientlib ncurses readline libiconv icu curl ] 37 31 ++ optional visualizerSupport fftw 38 32 ++ optional taglibSupport taglib; 39 33 ··· 41 35 description = "A featureful ncurses based MPD client inspired by ncmpc"; 42 36 homepage = http://ncmpcpp.rybczak.net/; 43 37 license = licenses.gpl2Plus; 44 - maintainers = with maintainers; [ lovek323 mornfall koral ]; 45 - platforms = platforms.linux; 38 + maintainers = with maintainers; [ jfrankenau koral lovek323 mornfall ]; 39 + platforms = platforms.all; 46 40 }; 47 41 }