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

135 lines
3.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, mkDerivation, fetchFromGitHub, fetchpatch, boost, cmake, chromaprint, gettext, gst_all_1, liblastfm
, qtbase, qtx11extras
2019-03-26 10:11:29 +00:00
, taglib, fftw, glew, qjson, sqlite, libgpod, libplist, usbmuxd, libmtp
2017-08-28 10:52:18 +00:00
, libpulseaudio, gvfs, libcdio, libechonest, libspotify, pcre, projectm, protobuf
, qca2, pkg-config, sparsehash, config, makeWrapper, gst_plugins }:
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;
2015-05-05 02:07:56 +00:00
# On the update after all 1.4rc, qt5.15 will be supported.
version = "1.4.0rc1";
2019-01-27 12:03:57 +00:00
src = fetchFromGitHub {
owner = "clementine-player";
repo = "Clementine";
rev = version;
sha256 = "1rqk0hrsn8f8bjk0j0vq1af0ygy6xx7qi9fw0jjw2cmj6kzckyi2";
2015-05-05 02:07:56 +00:00
};
2015-05-05 02:07:56 +00:00
patches = [
./clementine-spotify-blob.patch
];
nativeBuildInputs = [ cmake pkg-config ];
2017-08-28 10:52:18 +00:00
2015-05-05 02:07:56 +00:00
buildInputs = [
boost
2017-08-03 02:54:50 +00:00
chromaprint
2015-05-05 02:07:56 +00:00
fftw
gettext
glew
2017-08-03 02:54:50 +00:00
gst_all_1.gst-plugins-base
gst_all_1.gstreamer
2015-05-05 02:07:56 +00:00
gvfs
2017-08-03 02:54:50 +00:00
libechonest
2015-05-05 02:07:56 +00:00
liblastfm
2017-08-03 02:54:50 +00:00
libpulseaudio
pcre
2017-08-28 10:52:18 +00:00
projectm
2015-05-05 02:07:56 +00:00
protobuf
qca2
qjson
qtbase
qtx11extras
2015-05-05 02:07:56 +00:00
sqlite
taglib
]
2021-01-15 13:21:58 +00:00
++ 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'
'';
free = mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "clementine-free";
inherit version;
inherit src patches nativeBuildInputs postPatch;
# gst_plugins needed for setup-hooks
2019-11-09 23:52:53 +00:00
buildInputs = buildInputs ++ [ makeWrapper ] ++ gst_plugins;
2017-08-28 10:52:18 +00:00
preConfigure = ''
rm -rf ext/{,lib}clementine-spotifyblob
'';
cmakeFlags = [
"-DUSE_SYSTEM_PROJECTM=ON"
"-DSPOTIFY_BLOB=OFF"
];
2017-08-28 10:52:18 +00:00
passthru.unfree = unfree;
postInstall = ''
wrapProgram $out/bin/clementine \
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
'';
meta = with lib; {
homepage = "https://www.clementine-player.org";
2015-05-05 02:07:56 +00:00
description = "A multiplatform music player";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.ttuegel ];
};
};
# Unfree Spotify blob for Clementine
unfree = mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "clementine-blob";
inherit version;
2015-05-05 02:07:56 +00:00
# Use the same patches and sources as Clementine
inherit src nativeBuildInputs patches postPatch;
2017-08-03 02:54:50 +00:00
buildInputs = buildInputs ++ [ libspotify makeWrapper ];
2015-05-05 02:07:56 +00:00
# Only build and install the Spotify blob
preBuild = ''
cd ext/clementine-spotifyblob
'';
postInstall = ''
mkdir -p $out/libexec/clementine
mv $out/bin/clementine-spotifyblob $out/libexec/clementine
rmdir $out/bin
makeWrapper ${free}/bin/clementine $out/bin/clementine \
--set CLEMENTINE_SPOTIFYBLOB $out/libexec/clementine
mkdir -p $out/share
for dir in applications icons kde4; do
ln -s "${free}/share/$dir" "$out/share/$dir"
done
2015-05-05 02:07:56 +00:00
'';
meta = with lib; {
homepage = "https://www.clementine-player.org";
2015-05-05 02:07:56 +00:00
description = "Spotify integration for Clementine";
# The blob itself is Apache-licensed, although libspotify is unfree.
license = licenses.asl20;
platforms = platforms.linux;
maintainers = [ maintainers.ttuegel ];
};
};
2013-12-31 13:51:11 +00:00
in free