Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
143 lines
2.5 KiB
Nix
143 lines
2.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
boost,
|
|
cmake,
|
|
chromaprint,
|
|
gettext,
|
|
gst_all_1,
|
|
liblastfm,
|
|
qtbase,
|
|
qtx11extras,
|
|
qttools,
|
|
taglib_1,
|
|
fftw,
|
|
glew,
|
|
qjson,
|
|
sqlite,
|
|
libgpod,
|
|
libplist,
|
|
usbmuxd,
|
|
libmtp,
|
|
libpulseaudio,
|
|
gvfs,
|
|
libcdio,
|
|
pcre,
|
|
projectm_3,
|
|
protobuf,
|
|
qca-qt5,
|
|
pkg-config,
|
|
sparsehash,
|
|
config,
|
|
wrapQtAppsHook,
|
|
gst_plugins,
|
|
util-linuxMinimal,
|
|
libunwind,
|
|
libselinux,
|
|
elfutils,
|
|
libsepol,
|
|
orc,
|
|
alsa-lib,
|
|
}:
|
|
|
|
let
|
|
withIpod = config.clementine.ipod or false;
|
|
withMTP = config.clementine.mtp or true;
|
|
withCD = config.clementine.cd or true;
|
|
withCloud = config.clementine.cloud or true;
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "clementine";
|
|
version = "1.4.1-58-gbae968a2f";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "clementine-player";
|
|
repo = "Clementine";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-Ni+nbi0bADIPo9rPtt06loJ3MNU+y9bs1EZSenLfJSU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
wrapQtAppsHook
|
|
util-linuxMinimal
|
|
libunwind
|
|
libselinux
|
|
elfutils
|
|
libsepol
|
|
orc
|
|
];
|
|
|
|
buildInputs = [
|
|
boost
|
|
chromaprint
|
|
fftw
|
|
gettext
|
|
glew
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-bad
|
|
gst_all_1.gstreamer
|
|
gvfs
|
|
liblastfm
|
|
libpulseaudio
|
|
pcre
|
|
projectm_3
|
|
protobuf
|
|
qca-qt5
|
|
qjson
|
|
qtbase
|
|
qtx11extras
|
|
qttools
|
|
sqlite
|
|
taglib_1
|
|
alsa-lib
|
|
]
|
|
# gst_plugins needed for setup-hooks
|
|
++ gst_plugins
|
|
++ lib.optionals withIpod [
|
|
libgpod
|
|
libplist
|
|
usbmuxd
|
|
]
|
|
++ lib.optionals withMTP [ libmtp ]
|
|
++ lib.optionals withCD [ libcdio ]
|
|
++ lib.optionals withCloud [ sparsehash ];
|
|
|
|
postPatch = ''
|
|
sed -i src/CMakeLists.txt \
|
|
-e 's,-Werror,,g' \
|
|
-e 's,-Wno-unknown-warning-option,,g' \
|
|
-e 's,-Wno-unused-private-field,,g'
|
|
sed -i CMakeLists.txt \
|
|
-e 's,libprotobuf.a,protobuf,g'
|
|
'';
|
|
|
|
preConfigure = ''
|
|
rm -rf ext/{,lib}clementine-spotifyblob
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeFeature "FORCE_GIT_REVISION" "1.3.1")
|
|
(lib.cmakeBool "USE_SYSTEM_PROJECTM" true)
|
|
(lib.cmakeBool "SPOTIFY_BLOB" false)
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
postInstall = ''
|
|
wrapQtApp $out/bin/clementine \
|
|
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://www.clementine-player.org";
|
|
description = "Multiplatform music player";
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "clementine";
|
|
maintainers = with lib.maintainers; [ ttuegel ];
|
|
};
|
|
})
|