2021-01-19 06:50:56 +00:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, cmake, pkg-config
|
2020-09-08 19:03:12 +01:00
|
|
|
, qtbase, qtsvg, qttools, perl
|
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
|
2020-03-30 18:10:23 +01:00
|
|
|
, withHttpStream ? true, qtmultimedia
|
2020-06-07 13:39:09 +01:00
|
|
|
, withReplaygain ? true, ffmpeg_3, speex, mpg123
|
2014-05-03 03:36:20 +01:00
|
|
|
, withMtp ? true, libmtp
|
|
|
|
, withOnlineServices ? true
|
|
|
|
, withDevices ? true, udisks2
|
|
|
|
, withDynamic ? true
|
|
|
|
, withHttpServer ? true
|
2020-09-25 11:38:03 +01:00
|
|
|
, withLibVlc ? false, libvlc
|
2014-05-03 03:36:20 +01:00
|
|
|
, 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;
|
2020-03-30 18:10:23 +01:00
|
|
|
assert withLibVlc -> withHttpStream;
|
2014-05-03 03:36:20 +01:00
|
|
|
|
|
|
|
let
|
2020-10-22 10:08:31 +01:00
|
|
|
version = "2.4.2";
|
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);
|
|
|
|
|
2020-09-08 19:03:12 +01:00
|
|
|
perl' = perl.withPackages (ppkgs: [ ppkgs.URI ]);
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
in mkDerivation {
|
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}";
|
2020-10-22 10:08:31 +01:00
|
|
|
sha256 = "15qfx9bpfdplxxs08inwf2j8kvf7g5cln5sv1wj1l2l41vbf1mjr";
|
2014-05-03 03:36:20 +01:00
|
|
|
};
|
|
|
|
|
2020-09-08 19:03:12 +01:00
|
|
|
patches = [
|
|
|
|
# Cantata wants to check if perl is in the PATH at runtime, but we
|
|
|
|
# patchShebangs the playlists scripts, making that unnecessary (perl will
|
|
|
|
# always be available because it's a dependency)
|
|
|
|
./dont-check-for-perl-in-PATH.diff
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
patchShebangs playlists
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ qtbase qtsvg perl' ]
|
2019-08-05 13:13:59 +01:00
|
|
|
++ lib.optionals withTaglib [ taglib taglib_extras ]
|
2020-06-07 13:39:09 +01:00
|
|
|
++ lib.optionals withReplaygain [ ffmpeg_3 speex mpg123 ]
|
2020-03-30 18:10:23 +01:00
|
|
|
++ lib.optional withHttpStream qtmultimedia
|
2019-08-05 13:13:59 +01:00
|
|
|
++ lib.optional withCdda cdparanoia
|
|
|
|
++ lib.optional withCddb libcddb
|
|
|
|
++ lib.optional withLame lame
|
|
|
|
++ lib.optional withMtp libmtp
|
|
|
|
++ lib.optional withMusicbrainz libmusicbrainz5
|
2020-03-30 18:10:23 +01:00
|
|
|
++ lib.optional withUdisks udisks2
|
2020-09-25 11:38:03 +01:00
|
|
|
++ lib.optional withLibVlc libvlc;
|
2017-08-01 18:13:16 +01:00
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config qttools ];
|
2017-08-01 18:13:16 +01:00
|
|
|
|
2019-08-05 13:13:59 +01:00
|
|
|
cmakeFlags = lib.flatten [
|
2017-10-05 16:21:44 +01:00
|
|
|
(fstats withTaglib [ "TAGLIB" "TAGLIB_EXTRAS" ])
|
|
|
|
(fstats withReplaygain [ "FFMPEG" "MPG123" "SPEEXDSP" ])
|
2020-03-30 18:10:23 +01:00
|
|
|
(fstat withHttpStream "HTTP_STREAM_PLAYBACK")
|
2017-10-05 16:21:44 +01:00
|
|
|
(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")
|
2020-03-30 18:10:23 +01:00
|
|
|
(fstat withLibVlc "LIBVLC")
|
2017-10-05 16:21:44 +01:00
|
|
|
(fstat withStreams "STREAMS")
|
|
|
|
(fstat withUdisks "UDISKS2")
|
2014-05-03 03:36:20 +01:00
|
|
|
"-DENABLE_HTTPS_SUPPORT=ON"
|
|
|
|
];
|
|
|
|
|
2019-08-05 13:13:59 +01:00
|
|
|
meta = with lib; {
|
2020-02-23 09:23:42 +00: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;
|
2019-12-05 07:29:48 +00:00
|
|
|
maintainers = with maintainers; [ 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
|
|
|
};
|
|
|
|
}
|