2017-08-01 18:13:16 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, vlc
|
2018-01-01 10:54:47 +00:00
|
|
|
, qtbase, qtmultimedia, qtsvg, qttools
|
2014-05-03 03:36:20 +01:00
|
|
|
|
|
|
|
# Cantata doesn't build with cdparanoia enabled so we disable that
|
|
|
|
# default for now until I (or someone else) figure it out.
|
|
|
|
, withCdda ? false, cdparanoia
|
|
|
|
, withCddb ? false, libcddb
|
|
|
|
, withLame ? false, lame
|
|
|
|
, withMusicbrainz ? false, libmusicbrainz5
|
|
|
|
|
|
|
|
, withTaglib ? true, taglib, taglib_extras
|
|
|
|
, withReplaygain ? true, ffmpeg, speex, mpg123
|
|
|
|
, withMtp ? true, libmtp
|
|
|
|
, withOnlineServices ? true
|
|
|
|
, withDevices ? true, udisks2
|
|
|
|
, withDynamic ? true
|
|
|
|
, withHttpServer ? true
|
|
|
|
, withStreams ? true
|
|
|
|
}:
|
|
|
|
|
|
|
|
# Inter-dependencies.
|
|
|
|
assert withCddb -> withCdda && withTaglib;
|
|
|
|
assert withCdda -> withCddb && withMusicbrainz;
|
|
|
|
assert withLame -> withCdda && withTaglib;
|
|
|
|
assert withMtp -> withTaglib;
|
|
|
|
assert withMusicbrainz -> withCdda && withTaglib;
|
|
|
|
assert withOnlineServices -> withTaglib;
|
|
|
|
assert withReplaygain -> withTaglib;
|
|
|
|
|
|
|
|
let
|
2017-10-05 16:02:01 +01:00
|
|
|
version = "2.2.0";
|
2014-05-03 03:36:20 +01:00
|
|
|
pname = "cantata";
|
|
|
|
fstat = x: fn: "-DENABLE_" + fn + "=" + (if x then "ON" else "OFF");
|
|
|
|
fstats = x: map (fstat x);
|
|
|
|
|
2017-10-05 16:21:44 +01:00
|
|
|
withUdisks = (withTaglib && withDevices);
|
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2014-05-03 03:36:20 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
2017-02-28 16:30:26 +00:00
|
|
|
src = fetchFromGitHub {
|
2017-08-01 18:13:16 +01:00
|
|
|
owner = "CDrummond";
|
|
|
|
repo = "cantata";
|
|
|
|
rev = "v${version}";
|
2017-10-05 16:02:01 +01:00
|
|
|
sha256 = "1b633chgfs8rya78bzzck5zijna15d1y4nmrz4dcjp862ks5y5q6";
|
2014-05-03 03:36:20 +01:00
|
|
|
};
|
|
|
|
|
2018-01-01 10:54:47 +00:00
|
|
|
buildInputs = [ vlc qtbase qtmultimedia qtsvg ]
|
2014-05-03 03:36:20 +01:00
|
|
|
++ stdenv.lib.optionals withTaglib [ taglib taglib_extras ]
|
|
|
|
++ stdenv.lib.optionals withReplaygain [ ffmpeg speex mpg123 ]
|
2017-08-01 18:13:16 +01:00
|
|
|
++ stdenv.lib.optional withCdda cdparanoia
|
|
|
|
++ stdenv.lib.optional withCddb libcddb
|
|
|
|
++ stdenv.lib.optional withLame lame
|
|
|
|
++ stdenv.lib.optional withMtp libmtp
|
|
|
|
++ stdenv.lib.optional withMusicbrainz libmusicbrainz5
|
2017-10-05 16:21:44 +01:00
|
|
|
++ stdenv.lib.optional withUdisks udisks2;
|
2017-08-01 18:13:16 +01:00
|
|
|
|
2018-01-01 10:54:47 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig qttools ];
|
2017-08-01 18:13:16 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-05-03 03:36:20 +01:00
|
|
|
|
|
|
|
cmakeFlags = stdenv.lib.flatten [
|
2017-10-05 16:21:44 +01:00
|
|
|
(fstats withTaglib [ "TAGLIB" "TAGLIB_EXTRAS" ])
|
|
|
|
(fstats withReplaygain [ "FFMPEG" "MPG123" "SPEEXDSP" ])
|
|
|
|
(fstat withCdda "CDPARANOIA")
|
|
|
|
(fstat withCddb "CDDB")
|
|
|
|
(fstat withLame "LAME")
|
|
|
|
(fstat withMtp "MTP")
|
|
|
|
(fstat withMusicbrainz "MUSICBRAINZ")
|
2014-05-03 03:36:20 +01:00
|
|
|
(fstat withOnlineServices "ONLINE_SERVICES")
|
2017-10-05 16:21:44 +01:00
|
|
|
(fstat withDynamic "DYNAMIC")
|
|
|
|
(fstat withDevices "DEVICES_SUPPORT")
|
|
|
|
(fstat withHttpServer "HTTP_SERVER")
|
|
|
|
(fstat withStreams "STREAMS")
|
|
|
|
(fstat withUdisks "UDISKS2")
|
2014-05-03 03:36:20 +01:00
|
|
|
"-DENABLE_HTTPS_SUPPORT=ON"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-10-05 16:02:01 +01:00
|
|
|
homepage = https://github.com/cdrummond/cantata;
|
2014-11-11 13:20:43 +00:00
|
|
|
description = "A graphical client for MPD";
|
2017-10-05 16:02:01 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ fuuzetsu peterhoeg ];
|
2014-05-03 03:36:20 +01:00
|
|
|
# Technically Cantata can run on Windows so if someone wants to
|
|
|
|
# bother figuring that one out, be my guest.
|
2017-10-05 16:02:01 +01:00
|
|
|
platforms = platforms.linux;
|
2014-05-03 03:36:20 +01:00
|
|
|
};
|
|
|
|
}
|