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

116 lines
3 KiB
Nix
Raw Normal View History

2013-12-31 13:51:11 +00:00
{ stdenv, fetchurl, boost, cmake, gettext, gstreamer, gst_plugins_base
, liblastfm, qt4, taglib, fftw, glew, qjson, sqlite, libgpod, libplist
2015-05-05 02:07:56 +00:00
, usbmuxd, libmtp, gvfs, libcdio, libspotify, protobuf, qca2, pkgconfig
, sparsehash, config, makeWrapper, runCommand, gst_plugins }:
let
2015-05-05 02:07:56 +00:00
withSpotify = config.clementine.spotify or false;
version = "1.2.3";
2015-05-02 18:37:10 +00:00
exeName = "clementine";
2015-05-05 02:07:56 +00:00
src = fetchurl {
url = https://github.com/clementine-player/Clementine/archive/1.2.3.tar.gz;
sha256 = "1gx1109i4pylz6x7gvp4rdzc6dvh0w6in6hfbygw01d08l26bxbx";
};
2015-05-05 02:07:56 +00:00
patches = [
./clementine-1.2.1-include-paths.patch
./clementine-dbus-namespace.patch
./clementine-spotify-blob.patch
];
2015-05-05 02:07:56 +00:00
buildInputs = [
boost
cmake
fftw
gettext
glew
gst_plugins_base
gstreamer
gvfs
libcdio
libgpod
liblastfm
libmtp
libplist
pkgconfig
protobuf
qca2
qjson
qt4
sparsehash
sqlite
taglib
usbmuxd
];
free = stdenv.mkDerivation {
name = "clementine-free-${version}";
2015-05-05 02:07:56 +00:00
inherit patches src buildInputs;
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = "http://www.clementine-player.org";
description = "A multiplatform music player";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.ttuegel ];
};
};
2015-05-05 02:07:56 +00:00
# Spotify blob for Clementine
blob = stdenv.mkDerivation {
name = "clementine-blob-${version}";
# Use the same patches and sources as Clementine
inherit patches src;
buildInputs = buildInputs ++ [ libspotify ];
# 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
'';
enableParallelBuilding = true;
2015-05-05 02:07:56 +00:00
meta = with stdenv.lib; {
homepage = "http://www.clementine-player.org";
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
2015-05-05 02:07:56 +00:00
with stdenv.lib;
runCommand "clementine-${version}"
{
inherit blob free;
2015-05-05 02:07:56 +00:00
buildInputs = [ makeWrapper ] ++ gst_plugins; # for the setup-hooks
dontPatchELF = true;
dontStrip = true;
2015-05-05 02:07:56 +00:00
meta = {
2013-12-31 13:51:11 +00:00
homepage = "http://www.clementine-player.org";
description = "A multiplatform music player"
2015-05-05 02:07:56 +00:00
+ " (" + (optionalString withSpotify "with Spotify, ")
+ "with gstreamer plugins: "
+ concatStrings (intersperse ", " (map (x: x.name) gst_plugins))
+ ")";
2013-12-31 13:51:11 +00:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.ttuegel ];
2013-12-31 13:51:11 +00:00
};
}
''
mkdir -p $out/bin
makeWrapper "$free/bin/${exeName}" "$out/bin/${exeName}" \
2015-05-05 02:07:56 +00:00
${optionalString withSpotify "--set CLEMENTINE_SPOTIFYBLOB \"$blob/libexec/clementine\""} \
--prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH"
''