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

122 lines
3.5 KiB
Nix
Raw Normal View History

2021-04-27 12:05:48 +02:00
{ mkDerivation
, lib
, fetchFromGitHub
, cmake
, pkg-config
, qtbase
, qtsvg
, qttools
, perl
2014-05-03 04:36:20 +02:00
2021-04-27 12:05:48 +02: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
2014-05-03 04:36:20 +02:00
2021-04-27 12:05:48 +02:00
, withTaglib ? true
, taglib
, taglib_extras
, withHttpStream ? true
, qtmultimedia
, withReplaygain ? true
, ffmpeg
, speex
, mpg123
, withMtp ? true
, libmtp
2014-05-03 04:36:20 +02:00
, withOnlineServices ? true
2021-04-27 12:05:48 +02:00
, withDevices ? true
, udisks2
2014-05-03 04:36:20 +02:00
, withDynamic ? true
, withHttpServer ? true
2021-04-27 12:05:48 +02:00
, withLibVlc ? false
, libvlc
2014-05-03 04:36:20 +02: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;
assert withLibVlc -> withHttpStream;
2014-05-03 04:36:20 +02:00
let
2021-04-27 12:05:48 +02:00
fstat = x: fn:
"-DENABLE_${fn}=${if x then "ON" else "OFF"}";
2017-10-05 17:21:44 +02:00
withUdisks = (withTaglib && withDevices);
2021-05-16 11:04:35 +02:00
options = [
{ names = [ "CDDB" ]; enable = withCddb; pkgs = [ libcddb ]; }
{ names = [ "CDPARANOIA" ]; enable = withCdda; pkgs = [ cdparanoia ]; }
{ names = [ "DEVICES_SUPPORT" ]; enable = withDevices; pkgs = [ ]; }
{ names = [ "DYNAMIC" ]; enable = withDynamic; pkgs = [ ]; }
{ names = [ "FFMPEG" "MPG123" "SPEEXDSP" ]; enable = withReplaygain; pkgs = [ ffmpeg speex mpg123 ]; }
{ names = [ "HTTPS_SUPPORT" ]; enable = true; pkgs = [ ]; }
{ names = [ "HTTP_SERVER" ]; enable = withHttpServer; pkgs = [ ]; }
{ names = [ "HTTP_STREAM_PLAYBACK" ]; enable = withHttpStream; pkgs = [ qtmultimedia ]; }
{ names = [ "LAME" ]; enable = withLame; pkgs = [ lame ]; }
{ names = [ "LIBVLC" ]; enable = withLibVlc; pkgs = [ libvlc ]; }
{ names = [ "MTP" ]; enable = withMtp; pkgs = [ libmtp ]; }
{ names = [ "MUSICBRAINZ" ]; enable = withMusicbrainz; pkgs = [ libmusicbrainz5 ]; }
{ names = [ "ONLINE_SERVICES" ]; enable = withOnlineServices; pkgs = [ ]; }
{ names = [ "STREAMS" ]; enable = withStreams; pkgs = [ ]; }
{ names = [ "TAGLIB" "TAGLIB_EXTRAS" ]; enable = withTaglib; pkgs = [ taglib taglib_extras ]; }
{ names = [ "UDISKS2" ]; enable = withUdisks; pkgs = [ udisks2 ]; }
];
2021-04-27 12:05:48 +02:00
in
mkDerivation rec {
pname = "cantata";
version = "2.4.2";
2014-05-03 04:36:20 +02:00
2017-02-28 17:30:26 +01:00
src = fetchFromGitHub {
2021-04-27 12:05:48 +02:00
owner = "CDrummond";
repo = "cantata";
rev = "v${version}";
2020-10-22 11:08:31 +02:00
sha256 = "15qfx9bpfdplxxs08inwf2j8kvf7g5cln5sv1wj1l2l41vbf1mjr";
2014-05-03 04:36:20 +02: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
'';
2021-05-16 11:04:35 +02:00
buildInputs = [
qtbase
qtsvg
(perl.withPackages (ppkgs: with ppkgs; [ URI ]))
]
++ lib.flatten (builtins.catAttrs "pkgs" (builtins.filter (e: e.enable) options));
2017-08-01 19:13:16 +02:00
nativeBuildInputs = [ cmake pkg-config qttools ];
2017-08-01 19:13:16 +02:00
2021-05-16 11:04:35 +02:00
cmakeFlags = lib.flatten (map (e: map (f: fstat e.enable f) e.names) options);
2014-05-03 04:36:20 +02:00
meta = with lib; {
2014-11-11 14:20:43 +01:00
description = "A graphical client for MPD";
2021-04-27 12:05:48 +02:00
homepage = "https://github.com/cdrummond/cantata";
license = licenses.gpl3Only;
maintainers = with maintainers; [ peterhoeg ];
2021-04-27 12:05:48 +02:00
# Technically, Cantata should run on Darwin/Windows so if someone wants to
2014-05-03 04:36:20 +02:00
# bother figuring that one out, be my guest.
2021-04-27 12:05:48 +02:00
platforms = platforms.linux;
2014-05-03 04:36:20 +02:00
};
}