cantata: 2.1.0 -> 2.2.0

+7 -8
+7 -8
pkgs/applications/audio/cantata/default.nix
··· 34 34 assert withReplaygain -> withTaglib; 35 35 36 36 let 37 - version = "2.1.0"; 37 + version = "2.2.0"; 38 38 pname = "cantata"; 39 39 fstat = x: fn: "-DENABLE_" + fn + "=" + (if x then "ON" else "OFF"); 40 40 fstats = x: map (fstat x); ··· 47 47 owner = "CDrummond"; 48 48 repo = "cantata"; 49 49 rev = "v${version}"; 50 - sha256 = "1mwc3cyrvg8qxjn70h4i6kdkvz85xspb3wi8wrb56jrhil409fkh"; 50 + sha256 = "1b633chgfs8rya78bzzck5zijna15d1y4nmrz4dcjp862ks5y5q6"; 51 51 }; 52 52 53 53 buildInputs = [ vlc ] ··· 86 86 87 87 # This is already fixed upstream but not released yet. Maybe in version 2. 88 88 preConfigure = '' 89 - sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/FindTaglib.cmake 89 + # sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/FindTaglib.cmake 90 90 ''; 91 91 92 92 meta = with stdenv.lib; { 93 - homepage = https://github.com/cdrummond/cantata; 93 + homepage = https://github.com/cdrummond/cantata; 94 94 description = "A graphical client for MPD"; 95 - license = licenses.gpl3; 96 - 95 + license = licenses.gpl3; 96 + maintainers = with maintainers; [ fuuzetsu peterhoeg ]; 97 97 # Technically Cantata can run on Windows so if someone wants to 98 98 # bother figuring that one out, be my guest. 99 - platforms = platforms.linux; 100 - maintainers = with maintainers; [ fuuzetsu ]; 99 + platforms = platforms.linux; 101 100 }; 102 101 }