2016-01-06 23:28:11 +01:00
|
|
|
{ fetchurl, stdenv, dpkg, xorg, alsaLib, makeWrapper, openssl_1_0_1, freetype
|
2013-10-22 19:56:30 +02:00
|
|
|
, glib, pango, cairo, atk, gdk_pixbuf, gtk, cups, nspr, nss, libpng, GConf
|
2016-01-06 23:28:11 +01:00
|
|
|
, libgcrypt, udev, fontconfig, dbus, expat, ffmpeg_0_10, curl, zlib, gnome }:
|
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-01-06 23:28:11 +01:00
|
|
|
version = "1.0.19.106.gb8a7150f";
|
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
|
|
|
|
gtk
|
|
|
|
libgcrypt
|
|
|
|
libpng
|
|
|
|
nss
|
|
|
|
pango
|
2015-01-15 05:25:26 +01:00
|
|
|
stdenv.cc.cc
|
2015-06-23 11:11:27 +02:00
|
|
|
udev
|
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";
|
|
|
|
sha256 = "be6b99329bb2fccdc9d77bc949dd463576fdb40db7f56195b4284bd348c470be";
|
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
|
|
|
|
|
|
|
unpackPhase = "true";
|
2012-07-02 10:46:30 +02:00
|
|
|
|
2011-01-06 00:23:22 +01:00
|
|
|
installPhase =
|
|
|
|
''
|
2015-01-20 11:11:28 +01:00
|
|
|
libdir=$out/lib/spotify
|
|
|
|
mkdir -p $libdir
|
2011-01-06 00:23:22 +01:00
|
|
|
dpkg-deb -x $src $out
|
2016-01-06 23:28:11 +01:00
|
|
|
mv $out/usr/* $out/
|
|
|
|
rm -rf $out/usr
|
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
|
|
|
|
2015-12-27 20:41:23 +01:00
|
|
|
ln -s ${openssl_1_0_1}/lib/libssl.so $libdir/libssl.so.1.0.0
|
|
|
|
ln -s ${openssl_1_0_1}/lib/libcrypto.so $libdir/libcrypto.so.1.0.0
|
2015-01-20 11:11:28 +01:00
|
|
|
ln -s ${nspr}/lib/libnspr4.so $libdir/libnspr4.so
|
|
|
|
ln -s ${nspr}/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" \
|
|
|
|
--prefix PATH : "${gnome.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/"
|
|
|
|
sed -i "s|Icon=.*|Icon=$out/share/spotify/Icons/spotify-linux-512.png|" "$out/share/applications/spotify.desktop"
|
|
|
|
'';
|
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;
|
2015-03-24 10:27:47 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ eelco ftrvxmtrx ];
|
2011-01-06 00:23:22 +01:00
|
|
|
};
|
|
|
|
}
|