2018-07-26 11:31:47 +01:00
|
|
|
{ fetchurl, stdenv, squashfsTools, xorg, alsaLib, makeWrapper, openssl, freetype
|
2019-05-22 12:03:39 +01:00
|
|
|
, glib, pango, cairo, atk, gdk-pixbuf, gtk2, cups, nspr, nss, libpng, libnotify
|
2019-03-17 12:54:39 +00:00
|
|
|
, libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg_3, curl, zlib, gnome3
|
2019-11-05 20:52:55 +00:00
|
|
|
, at-spi2-atk, at-spi2-core, libpulseaudio
|
2019-01-14 10:05:13 +00:00
|
|
|
}:
|
2018-05-07 13:04:15 +01:00
|
|
|
|
2013-05-02 17:23:10 +01:00
|
|
|
let
|
2018-08-31 16:18:48 +01:00
|
|
|
# TO UPDATE: just execute the ./update.sh script (won't do anything if there is no update)
|
2018-07-26 11:31:47 +01:00
|
|
|
# "rev" decides what is actually being downloaded
|
2019-03-17 14:27:41 +00:00
|
|
|
# If an update breaks things, one of those might have valuable info:
|
|
|
|
# https://aur.archlinux.org/packages/spotify/
|
|
|
|
# https://community.spotify.com/t5/Desktop-Linux
|
2019-11-02 16:09:44 +00:00
|
|
|
version = "1.1.10.546.ge08ef575-19";
|
2018-07-26 11:31:47 +01:00
|
|
|
# To get the latest stable revision:
|
|
|
|
# curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=stable' | jq '.download_url,.version,.last_updated'
|
|
|
|
# To get general information:
|
|
|
|
# curl -H 'Snap-Device-Series: 16' 'https://api.snapcraft.io/v2/snaps/info/spotify' | jq '.'
|
2018-09-05 14:53:38 +01:00
|
|
|
# More examples of api usage:
|
2018-07-26 11:31:47 +01:00
|
|
|
# https://github.com/canonical-websites/snapcraft.io/blob/master/webapp/publisher/snaps/views.py
|
2019-11-02 16:09:44 +00:00
|
|
|
rev = "36";
|
2018-07-26 11:31:47 +01:00
|
|
|
|
2014-05-13 11:04:20 +01:00
|
|
|
|
|
|
|
deps = [
|
|
|
|
alsaLib
|
|
|
|
atk
|
2019-01-14 10:05:13 +00:00
|
|
|
at-spi2-atk
|
2019-11-02 16:09:44 +00:00
|
|
|
at-spi2-core
|
2014-05-13 11:04:20 +01:00
|
|
|
cairo
|
|
|
|
cups
|
2016-01-06 22:28:11 +00:00
|
|
|
curl
|
2014-05-13 11:04:20 +01:00
|
|
|
dbus
|
|
|
|
expat
|
2019-03-17 12:54:39 +00:00
|
|
|
ffmpeg_3
|
2014-05-13 11:04:20 +01:00
|
|
|
fontconfig
|
|
|
|
freetype
|
2019-05-22 12:03:39 +01:00
|
|
|
gdk-pixbuf
|
2014-05-13 11:04:20 +01:00
|
|
|
glib
|
2016-09-11 22:24:51 +01:00
|
|
|
gtk2
|
2014-05-13 11:04:20 +01:00
|
|
|
libgcrypt
|
2019-04-22 13:10:53 +01:00
|
|
|
libnotify
|
2014-05-13 11:04:20 +01:00
|
|
|
libpng
|
2019-11-05 20:52:55 +00:00
|
|
|
libpulseaudio
|
2014-05-13 11:04:20 +01:00
|
|
|
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
|
2017-03-29 17:03:44 +01:00
|
|
|
xorg.libxcb
|
2016-01-06 22:28:11 +00:00
|
|
|
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 {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "spotify";
|
|
|
|
inherit version;
|
2011-01-05 23:23:22 +00:00
|
|
|
|
2018-07-26 11:31:47 +01:00
|
|
|
# fetch from snapcraft instead of the debian repository most repos fetch from.
|
|
|
|
# That is a bit more cumbersome. But the debian repository only keeps the last
|
|
|
|
# two versions, while snapcraft should provide versions indefinately:
|
|
|
|
# https://forum.snapcraft.io/t/how-can-a-developer-remove-her-his-app-from-snap-store/512
|
|
|
|
|
|
|
|
# This is the next-best thing, since we're not allowed to re-distribute
|
|
|
|
# spotify ourselves:
|
|
|
|
# https://community.spotify.com/t5/Desktop-Linux/Redistribute-Spotify-on-Linux-Distributions/td-p/1695334
|
2017-04-16 06:52:23 +01:00
|
|
|
src = fetchurl {
|
2018-07-26 11:31:47 +01:00
|
|
|
url = "https://api.snapcraft.io/api/v1/snaps/download/pOBIoZ2LrCB3rDohMxoYGnbN14EHOgD7_${rev}.snap";
|
2019-11-02 16:09:44 +00:00
|
|
|
sha512 = "c49f1a86a9b737e64a475bbe62754a36f607669e908eb725a2395f0a0a6b95968e0c8ce27ab2c8b6c92fe8cbacb1ef58de11c79b92dc0f58c2c6d3a140706a1f";
|
2017-04-16 06:52:23 +01:00
|
|
|
};
|
2011-01-05 23:23:22 +00:00
|
|
|
|
2018-07-26 11:31:47 +01:00
|
|
|
buildInputs = [ squashfsTools makeWrapper ];
|
2011-01-05 23:23:22 +00:00
|
|
|
|
2017-04-16 06:52:23 +01:00
|
|
|
dontStrip = true;
|
|
|
|
dontPatchELF = true;
|
|
|
|
|
2016-09-27 19:47:48 +01:00
|
|
|
unpackPhase = ''
|
|
|
|
runHook preUnpack
|
2018-07-26 11:31:47 +01:00
|
|
|
unsquashfs "$src" '/usr/share/spotify' '/usr/bin/spotify' '/meta/snap.yaml'
|
|
|
|
cd squashfs-root
|
|
|
|
if ! grep -q 'grade: stable' meta/snap.yaml; then
|
|
|
|
# Unfortunately this check is not reliable: At the moment (2018-07-26) the
|
|
|
|
# latest version in the "edge" channel is also marked as stable.
|
|
|
|
echo "The snap package is marked as unstable:"
|
|
|
|
grep 'grade: ' meta/snap.yaml
|
|
|
|
echo "You probably chose the wrong revision."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if ! grep -q '${version}' meta/snap.yaml; then
|
|
|
|
echo "Package version differs from version found in snap metadata:"
|
|
|
|
grep 'version: ' meta/snap.yaml
|
|
|
|
echo "While the nix package specifies: ${version}."
|
|
|
|
echo "You probably chose the wrong revision or forgot to update the nix version."
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-09-27 19:47:48 +01:00
|
|
|
runHook postUnpack
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
|
2018-07-26 11:31:47 +01:00
|
|
|
cp meta/snap.yaml $out
|
|
|
|
|
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
|
|
|
|
2019-03-17 12:54:39 +00:00
|
|
|
ln -s ${ffmpeg_3.out}/lib/libavcodec.so* $libdir
|
|
|
|
ln -s ${ffmpeg_3.out}/lib/libavformat.so* $libdir
|
2018-11-11 01:24:47 +00: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" \
|
2018-05-07 13:04:15 +01:00
|
|
|
--prefix PATH : "${gnome3.zenity}/bin"
|
2013-10-22 19:42:42 +01:00
|
|
|
|
2018-10-11 13:33:20 +01:00
|
|
|
# fix Icon line in the desktop file (#48062)
|
|
|
|
sed -i "s:^Icon=.*:Icon=spotify-client:" "$out/share/spotify/spotify.desktop"
|
|
|
|
|
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
|
|
|
|
2017-04-16 06:52:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
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";
|
2017-04-16 06:52:23 +01:00
|
|
|
license = licenses.unfree;
|
2019-08-03 10:54:07 +01:00
|
|
|
maintainers = with maintainers; [ eelco ftrvxmtrx sheenobu mudri timokau ];
|
2017-04-16 06:52:23 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2011-01-05 23:23:22 +00:00
|
|
|
};
|
|
|
|
}
|