nixpkgs/pkgs/applications/audio/cantata/default.nix

106 lines
3.2 KiB
Nix
Raw Normal View History

2017-02-28 19:30:26 +03:00
{ stdenv, fetchFromGitHub, cmake, vlc
2014-12-10 11:36:04 +03:00
, withQt4 ? false, qt4
, withQt5 ? true, qtbase, qtsvg, qttools, makeQtWrapper
2014-05-03 06:36:20 +04: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
}:
# One and only one front-end.
assert withQt5 -> withQt4 == false;
assert withQt4 -> withQt5 == false;
assert withQt4 || withQt5;
2014-05-03 06:36:20 +04:00
# 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-02-28 19:30:26 +03:00
version = "2.0.1";
2014-05-03 06:36:20 +04:00
pname = "cantata";
fstat = x: fn: "-DENABLE_" + fn + "=" + (if x then "ON" else "OFF");
fstats = x: map (fstat x);
in
stdenv.mkDerivation rec {
name = "${pname}-${version}";
2017-02-28 19:30:26 +03:00
src = fetchFromGitHub {
owner = "CDrummond";
repo = "cantata";
rev = "v${version}";
sha256 = "18fiz3cav41dpap42qwj9hwxf2k9fmhyg2r34yggxqi2cjlsil36";
2014-05-03 06:36:20 +04:00
};
buildInputs =
2017-02-28 19:30:26 +03:00
[ cmake vlc ]
2014-05-03 06:36:20 +04:00
++ stdenv.lib.optional withQt4 qt4
2015-09-27 18:25:52 +03:00
++ stdenv.lib.optionals withQt5 [ qtbase qtsvg qttools ]
2014-05-03 06:36:20 +04:00
++ stdenv.lib.optionals withTaglib [ taglib taglib_extras ]
++ stdenv.lib.optionals withReplaygain [ ffmpeg speex mpg123 ]
++ 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
++ stdenv.lib.optional (withTaglib && withDevices) udisks2;
2014-05-03 06:36:20 +04:00
nativeBuildInputs = stdenv.lib.optional withQt5 makeQtWrapper;
2014-05-03 06:36:20 +04:00
cmakeFlags = stdenv.lib.flatten [
(fstat withQt5 "QT5")
(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")
(fstat withOnlineServices "ONLINE_SERVICES")
(fstat withDynamic "DYNAMIC")
(fstat withDevices "DEVICES_SUPPORT")
(fstat withHttpServer "HTTP_SERVER")
(fstat withStreams "STREAMS")
"-DENABLE_HTTPS_SUPPORT=ON"
"-DENABLE_UDISKS2=ON"
];
2015-12-26 20:42:03 +03:00
# This is already fixed upstream but not released yet. Maybe in version 2.
2015-12-26 20:00:32 +03:00
preConfigure = ''
sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/FindTaglib.cmake
'';
postInstall = stdenv.lib.optionalString withQt5 ''
2015-09-27 18:25:52 +03:00
wrapQtProgram "$out/bin/cantata"
'';
2014-05-03 06:36:20 +04:00
meta = with stdenv.lib; {
2016-06-17 19:31:48 +03:00
homepage = https://github.com/cdrummond/cantata;
2014-11-11 16:20:43 +03:00
description = "A graphical client for MPD";
2014-05-03 06:36:20 +04:00
license = licenses.gpl3;
# Technically Cantata can run on Windows so if someone wants to
# bother figuring that one out, be my guest.
platforms = platforms.linux;
maintainers = [ maintainers.fuuzetsu ];
};
}