2016-04-09 03:54:00 -07:00
|
|
|
{ fetchurl, stdenv, dpkg, xorg, alsaLib, makeWrapper, openssl, freetype
|
2016-09-11 14:24:51 -07: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-05 15:23:22 -08:00
|
|
|
|
2015-06-23 02:11:27 -07:00
|
|
|
assert stdenv.system == "x86_64-linux";
|
2011-01-06 02:17:18 -08:00
|
|
|
|
2013-05-02 09:23:10 -07:00
|
|
|
let
|
2016-09-02 05:26:20 -07:00
|
|
|
# Please update the stable branch!
|
2017-02-11 13:20:42 -08:00
|
|
|
# Latest version number can be found at:
|
|
|
|
# http://repository-origin.spotify.com/pool/non-free/s/spotify-client/
|
2017-06-24 12:41:05 -07:00
|
|
|
version = "1.0.57.474.gca9c9538-30";
|
2014-05-13 03:04:20 -07:00
|
|
|
|
|
|
|
deps = [
|
|
|
|
alsaLib
|
|
|
|
atk
|
|
|
|
cairo
|
|
|
|
cups
|
2016-01-06 14:28:11 -08:00
|
|
|
curl
|
2014-05-13 03:04:20 -07:00
|
|
|
dbus
|
|
|
|
expat
|
2015-12-22 01:34:24 -08:00
|
|
|
ffmpeg_0_10
|
2014-05-13 03:04:20 -07:00
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
GConf
|
|
|
|
gdk_pixbuf
|
|
|
|
glib
|
2016-09-11 14:24:51 -07:00
|
|
|
gtk2
|
2014-05-13 03:04:20 -07:00
|
|
|
libgcrypt
|
|
|
|
libpng
|
|
|
|
nss
|
|
|
|
pango
|
2015-01-14 20:25:26 -08:00
|
|
|
stdenv.cc.cc
|
2016-09-05 09:59:00 -07:00
|
|
|
systemd
|
2015-09-15 02:26:18 -07:00
|
|
|
xorg.libX11
|
|
|
|
xorg.libXcomposite
|
2016-01-06 14:28:11 -08:00
|
|
|
xorg.libXcursor
|
2015-09-15 02:26:18 -07:00
|
|
|
xorg.libXdamage
|
|
|
|
xorg.libXext
|
|
|
|
xorg.libXfixes
|
|
|
|
xorg.libXi
|
|
|
|
xorg.libXrandr
|
|
|
|
xorg.libXrender
|
|
|
|
xorg.libXScrnSaver
|
2016-01-06 14:28:11 -08:00
|
|
|
xorg.libXtst
|
2017-03-29 09:03:44 -07:00
|
|
|
xorg.libxcb
|
2016-01-06 14:28:11 -08:00
|
|
|
zlib
|
2014-05-13 03:04:20 -07:00
|
|
|
];
|
|
|
|
|
2012-07-02 01:46:30 -07:00
|
|
|
in
|
2011-01-05 15:23:22 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2011-01-06 02:17:18 -08:00
|
|
|
name = "spotify-${version}";
|
2011-01-05 15:23:22 -08:00
|
|
|
|
2017-04-15 22:52:23 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_${version}_amd64.deb";
|
2017-06-24 12:41:05 -07:00
|
|
|
sha256 = "fe46f2084c45c756bee366f744d2821d79e82866b19942e30bb2a20c1e597437";
|
2017-04-15 22:52:23 -07:00
|
|
|
};
|
2011-01-05 15:23:22 -08:00
|
|
|
|
2011-02-11 03:16:18 -08:00
|
|
|
buildInputs = [ dpkg makeWrapper ];
|
2011-01-05 15:23:22 -08:00
|
|
|
|
2017-04-15 22:52:23 -07:00
|
|
|
doConfigure = false;
|
|
|
|
doBuild = false;
|
|
|
|
dontStrip = true;
|
|
|
|
dontPatchELF = true;
|
|
|
|
|
2016-09-27 11:47:48 -07:00
|
|
|
unpackPhase = ''
|
|
|
|
runHook preUnpack
|
|
|
|
dpkg-deb -x $src .
|
|
|
|
runHook postUnpack
|
|
|
|
'';
|
|
|
|
|
2011-01-05 15:23:22 -08:00
|
|
|
installPhase =
|
|
|
|
''
|
2016-09-27 11:47:48 -07:00
|
|
|
runHook preInstall
|
|
|
|
|
2015-01-20 02:11:28 -08:00
|
|
|
libdir=$out/lib/spotify
|
|
|
|
mkdir -p $libdir
|
2016-09-27 11:47:48 -07:00
|
|
|
mv ./usr/* $out/
|
2011-01-05 15:23:22 -08:00
|
|
|
|
2011-09-23 08:37:15 -07:00
|
|
|
# Work around Spotify referring to a specific minor version of
|
|
|
|
# OpenSSL.
|
2014-05-30 01:18:30 -07:00
|
|
|
|
2016-04-10 02:17:52 -07: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 08:45:54 -07:00
|
|
|
ln -s ${nspr.out}/lib/libnspr4.so $libdir/libnspr4.so
|
|
|
|
ln -s ${nspr.out}/lib/libplc4.so $libdir/libplc4.so
|
2013-10-22 10:56:30 -07:00
|
|
|
|
2016-01-06 14:28:11 -08:00
|
|
|
rpath="$out/share/spotify:$libdir"
|
2014-05-13 03:04:20 -07:00
|
|
|
|
|
|
|
patchelf \
|
2014-12-17 10:11:30 -08:00
|
|
|
--interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
2016-01-06 14:28:11 -08:00
|
|
|
--set-rpath $rpath $out/share/spotify/spotify
|
2014-05-13 03:04:20 -07:00
|
|
|
|
2015-01-20 02:11:28 -08:00
|
|
|
librarypath="${stdenv.lib.makeLibraryPath deps}:$libdir"
|
2016-01-06 14:28:11 -08:00
|
|
|
wrapProgram $out/share/spotify/spotify \
|
|
|
|
--prefix LD_LIBRARY_PATH : "$librarypath" \
|
2016-09-11 14:24:51 -07:00
|
|
|
--prefix PATH : "${gnome2.zenity}/bin"
|
2013-10-22 11:42:42 -07:00
|
|
|
|
|
|
|
# Desktop file
|
|
|
|
mkdir -p "$out/share/applications/"
|
2016-01-06 14:28:11 -08:00
|
|
|
cp "$out/share/spotify/spotify.desktop" "$out/share/applications/"
|
2016-01-25 05:13:06 -08: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 11:47:48 -07:00
|
|
|
|
|
|
|
runHook postInstall
|
2016-01-06 14:28:11 -08:00
|
|
|
'';
|
2011-01-05 15:23:22 -08:00
|
|
|
|
2017-04-15 22:52:23 -07:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-22 11:13:24 -07:00
|
|
|
homepage = https://www.spotify.com/;
|
2014-08-24 07:21:08 -07:00
|
|
|
description = "Play music from the Spotify music service";
|
2017-04-15 22:52:23 -07:00
|
|
|
license = licenses.unfree;
|
|
|
|
maintainers = with maintainers; [ eelco ftrvxmtrx sheenobu mudri ];
|
|
|
|
platforms = [ "x86_64-linux" ];
|
2011-01-05 15:23:22 -08:00
|
|
|
};
|
|
|
|
}
|