2016-04-09 12:54:00 +02:00
|
|
|
{ fetchurl, stdenv, dpkg, xorg, alsaLib, makeWrapper, openssl, freetype
|
2016-09-11 23:24:51 +02:00
|
|
|
, glib, pango, cairo, atk, gdk_pixbuf, gtk2, cups, nspr, nss, libpng, GConf
|
|
|
|
, libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg_0_10, curl, zlib, gnome2 }:
|
2011-01-06 00:23:22 +01:00
|
|
|
|
2015-06-23 11:11:27 +02:00
|
|
|
assert stdenv.system == "x86_64-linux";
|
2011-01-06 11:17:18 +01:00
|
|
|
|
2013-05-02 18:23:10 +02:00
|
|
|
let
|
2016-09-02 14:26:20 +02:00
|
|
|
# Please update the stable branch!
|
2016-09-27 20:35:54 +02:00
|
|
|
version = "1.0.38.171.g5e1cd7b2-22";
|
2014-05-13 12:04:20 +02:00
|
|
|
|
|
|
|
deps = [
|
|
|
|
alsaLib
|
|
|
|
atk
|
|
|
|
cairo
|
|
|
|
cups
|
2016-01-06 23:28:11 +01:00
|
|
|
curl
|
2014-05-13 12:04:20 +02:00
|
|
|
dbus
|
|
|
|
expat
|
2015-12-22 10:34:24 +01:00
|
|
|
ffmpeg_0_10
|
2014-05-13 12:04:20 +02:00
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
GConf
|
|
|
|
gdk_pixbuf
|
|
|
|
glib
|
2016-09-11 23:24:51 +02:00
|
|
|
gtk2
|
2014-05-13 12:04:20 +02:00
|
|
|
libgcrypt
|
|
|
|
libpng
|
|
|
|
nss
|
|
|
|
pango
|
2015-01-15 05:25:26 +01:00
|
|
|
stdenv.cc.cc
|
2016-09-05 18:59:00 +02:00
|
|
|
systemd
|
2015-09-15 11:26:18 +02:00
|
|
|
xorg.libX11
|
|
|
|
xorg.libXcomposite
|
2016-01-06 23:28:11 +01:00
|
|
|
xorg.libXcursor
|
2015-09-15 11:26:18 +02:00
|
|
|
xorg.libXdamage
|
|
|
|
xorg.libXext
|
|
|
|
xorg.libXfixes
|
|
|
|
xorg.libXi
|
|
|
|
xorg.libXrandr
|
|
|
|
xorg.libXrender
|
|
|
|
xorg.libXScrnSaver
|
2016-01-06 23:28:11 +01:00
|
|
|
xorg.libXtst
|
|
|
|
zlib
|
2014-05-13 12:04:20 +02:00
|
|
|
];
|
|
|
|
|
2012-07-02 10:46:30 +02:00
|
|
|
in
|
2011-01-06 00:23:22 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2011-01-06 11:17:18 +01:00
|
|
|
name = "spotify-${version}";
|
2011-01-06 00:23:22 +01:00
|
|
|
|
2011-01-06 11:17:18 +01:00
|
|
|
src =
|
2015-06-23 11:11:27 +02:00
|
|
|
fetchurl {
|
2016-01-06 23:28:11 +01:00
|
|
|
url = "http://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_${version}_amd64.deb";
|
2016-09-27 20:35:54 +02:00
|
|
|
sha256 = "0mhrbcw92g11czwcclnbwz1pk1jgap4xlya7dqsrcyb50azmv450";
|
2015-06-23 11:11:27 +02:00
|
|
|
};
|
2011-01-06 00:23:22 +01:00
|
|
|
|
2011-02-11 12:16:18 +01:00
|
|
|
buildInputs = [ dpkg makeWrapper ];
|
2011-01-06 00:23:22 +01:00
|
|
|
|
2016-09-27 20:47:48 +02:00
|
|
|
unpackPhase = ''
|
|
|
|
runHook preUnpack
|
|
|
|
dpkg-deb -x $src .
|
|
|
|
runHook postUnpack
|
|
|
|
'';
|
|
|
|
|
|
|
|
configurePhase = "runHook preConfigure; runHook postConfigure";
|
|
|
|
buildPhase = "runHook preBuild; runHook postBuild";
|
2012-07-02 10:46:30 +02:00
|
|
|
|
2011-01-06 00:23:22 +01:00
|
|
|
installPhase =
|
|
|
|
''
|
2016-09-27 20:47:48 +02:00
|
|
|
runHook preInstall
|
|
|
|
|
2015-01-20 11:11:28 +01:00
|
|
|
libdir=$out/lib/spotify
|
|
|
|
mkdir -p $libdir
|
2016-09-27 20:47:48 +02:00
|
|
|
mv ./usr/* $out/
|
2011-01-06 00:23:22 +01:00
|
|
|
|
2011-09-23 17:37:15 +02:00
|
|
|
# Work around Spotify referring to a specific minor version of
|
|
|
|
# OpenSSL.
|
2014-05-30 10:18:30 +02:00
|
|
|
|
2016-04-10 11:17:52 +02:00
|
|
|
ln -s ${openssl.out}/lib/libssl.so $libdir/libssl.so.1.0.0
|
|
|
|
ln -s ${openssl.out}/lib/libcrypto.so $libdir/libcrypto.so.1.0.0
|
2015-10-05 17:45:54 +02:00
|
|
|
ln -s ${nspr.out}/lib/libnspr4.so $libdir/libnspr4.so
|
|
|
|
ln -s ${nspr.out}/lib/libplc4.so $libdir/libplc4.so
|
2013-10-22 19:56:30 +02:00
|
|
|
|
2016-01-06 23:28:11 +01:00
|
|
|
rpath="$out/share/spotify:$libdir"
|
2014-05-13 12:04:20 +02:00
|
|
|
|
|
|
|
patchelf \
|
2014-12-17 19:11:30 +01:00
|
|
|
--interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
2016-01-06 23:28:11 +01:00
|
|
|
--set-rpath $rpath $out/share/spotify/spotify
|
2014-05-13 12:04:20 +02:00
|
|
|
|
2015-01-20 11:11:28 +01:00
|
|
|
librarypath="${stdenv.lib.makeLibraryPath deps}:$libdir"
|
2016-01-06 23:28:11 +01:00
|
|
|
wrapProgram $out/share/spotify/spotify \
|
|
|
|
--prefix LD_LIBRARY_PATH : "$librarypath" \
|
2016-09-11 23:24:51 +02:00
|
|
|
--prefix PATH : "${gnome2.zenity}/bin"
|
2013-10-22 20:42:42 +02:00
|
|
|
|
|
|
|
# Desktop file
|
|
|
|
mkdir -p "$out/share/applications/"
|
2016-01-06 23:28:11 +01:00
|
|
|
cp "$out/share/spotify/spotify.desktop" "$out/share/applications/"
|
2016-01-25 14:13:06 +01:00
|
|
|
|
|
|
|
# Icons
|
|
|
|
for i in 16 22 24 32 48 64 128 256 512; do
|
|
|
|
ixi="$i"x"$i"
|
|
|
|
mkdir -p "$out/share/icons/hicolor/$ixi/apps"
|
|
|
|
ln -s "$out/share/spotify/icons/spotify-linux-$i.png" \
|
|
|
|
"$out/share/icons/hicolor/$ixi/apps/spotify-client.png"
|
|
|
|
done
|
2016-09-27 20:47:48 +02:00
|
|
|
|
|
|
|
runHook postInstall
|
2016-01-06 23:28:11 +01:00
|
|
|
'';
|
2011-01-06 00:23:22 +01:00
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
dontPatchELF = true;
|
|
|
|
|
|
|
|
meta = {
|
2013-10-22 20:13:24 +02:00
|
|
|
homepage = https://www.spotify.com/;
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Play music from the Spotify music service";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.unfree;
|
2016-08-06 14:02:03 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ eelco ftrvxmtrx sheenobu mudri ];
|
2011-01-06 00:23:22 +01:00
|
|
|
};
|
|
|
|
}
|