nixpkgs/pkgs/by-name/ca/cantata/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

203 lines
4.2 KiB
Nix
Raw Normal View History

2024-11-06 10:14:16 +00:00
{
stdenv,
lib,
fetchFromGitHub,
cmake,
pkg-config,
2024-11-06 10:15:38 +00:00
qt5,
2024-11-06 10:14:16 +00:00
perl,
2014-05-03 02:36:20 +00:00
2021-04-27 10:05:48 +00:00
# Cantata doesn't build with cdparanoia enabled so we disable that
# default for now until I (or someone else) figure it out.
2024-11-06 10:14:16 +00:00
withCdda ? false,
cdparanoia,
withCddb ? false,
libcddb,
withLame ? false,
lame,
withMusicbrainz ? false,
libmusicbrainz5,
2014-05-03 02:36:20 +00:00
2024-11-06 10:14:16 +00:00
withTaglib ? true,
taglib,
taglib_extras,
withHttpStream ? true,
withReplaygain ? true,
ffmpeg,
speex,
mpg123,
withMtp ? true,
libmtp,
withOnlineServices ? true,
withDevices ? true,
udisks2,
withDynamic ? true,
withHttpServer ? true,
withLibVlc ? false,
libvlc,
withStreams ? true,
2014-05-03 02:36:20 +00: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;
assert withLibVlc -> withHttpStream;
2014-05-03 02:36:20 +00:00
let
2024-11-06 10:14:16 +00:00
fstat = x: fn: "-DENABLE_${fn}=${if x then "ON" else "OFF"}";
2021-04-27 10:05:48 +00:00
2024-11-06 10:15:38 +00:00
withUdisks = (withTaglib && withDevices && stdenv.hostPlatform.isLinux);
2017-10-05 15:21:44 +00:00
2021-05-16 09:04:35 +00:00
options = [
2024-11-06 10:14:16 +00:00
{
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;
2024-11-06 10:15:38 +00:00
pkgs = [ qt5.qtmultimedia ];
2024-11-06 10:14:16 +00:00
}
{
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-05-16 09:04:35 +00:00
];
2021-04-27 10:05:48 +00:00
in
2024-11-06 10:15:38 +00:00
stdenv.mkDerivation (finalAttrs: {
2021-04-27 10:05:48 +00:00
pname = "cantata";
2022-03-03 02:09:51 +00:00
version = "2.5.0";
2014-05-03 02:36:20 +00:00
2017-02-28 16:30:26 +00:00
src = fetchFromGitHub {
2021-04-27 10:05:48 +00:00
owner = "CDrummond";
repo = "cantata";
2024-11-06 10:15:38 +00:00
rev = "v${finalAttrs.version}";
hash = "sha256-UaZEKZvCA50WsdQSSJQQ11KTK6rM4ouCHDX7pn3NlQw=";
2014-05-03 02:36:20 +00: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 09:04:35 +00:00
buildInputs = [
2024-11-06 10:15:38 +00:00
qt5.qtbase
qt5.qtsvg
2021-05-16 09:04:35 +00:00
(perl.withPackages (ppkgs: with ppkgs; [ URI ]))
2024-11-06 10:14:16 +00:00
] ++ lib.flatten (builtins.catAttrs "pkgs" (builtins.filter (e: e.enable) options));
2017-08-01 17:13:16 +00:00
2024-11-06 10:14:16 +00:00
nativeBuildInputs = [
cmake
pkg-config
2024-11-06 10:15:38 +00:00
qt5.qttools
qt5.wrapQtAppsHook
2024-11-06 10:14:16 +00:00
];
2017-08-01 17:13:16 +00:00
2021-05-16 09:04:35 +00:00
cmakeFlags = lib.flatten (map (e: map (f: fstat e.enable f) e.names) options);
2014-05-03 02:36:20 +00:00
2024-11-06 10:15:38 +00:00
meta = {
2014-11-11 13:20:43 +00:00
description = "Graphical client for MPD";
mainProgram = "cantata";
2021-04-27 10:05:48 +00:00
homepage = "https://github.com/cdrummond/cantata";
2024-11-06 10:15:38 +00:00
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ peterhoeg ];
2021-04-27 10:05:48 +00:00
# Technically, Cantata should run on Darwin/Windows so if someone wants to
2014-05-03 02:36:20 +00:00
# bother figuring that one out, be my guest.
2024-11-06 10:15:38 +00:00
platforms = lib.platforms.unix;
badPlatforms = lib.platforms.darwin;
2014-05-03 02:36:20 +00:00
};
2024-11-06 10:15:38 +00:00
})