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