2021-07-14 21:52:27 +01:00
|
|
|
{ fetchurl, lib, stdenv, squashfsTools, xorg, alsa-lib, makeWrapper, wrapGAppsHook, openssl, freetype
|
2021-03-25 08:29:56 +00:00
|
|
|
, glib, pango, cairo, atk, gdk-pixbuf, gtk3, cups, nspr, nss, libpng, libnotify
|
2021-05-07 22:18:14 +01:00
|
|
|
, libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg, curl, zlib, gnome
|
2021-03-25 08:29:56 +00:00
|
|
|
, at-spi2-atk, at-spi2-core, libpulseaudio, libdrm, mesa, libxkbcommon
|
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
|
2022-03-04 12:10:15 +00:00
|
|
|
version = "1.1.80.699.gc3dac750";
|
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
|
2022-03-04 12:10:15 +00:00
|
|
|
rev = "58";
|
2014-05-13 11:04:20 +01:00
|
|
|
|
|
|
|
deps = [
|
2021-06-10 03:57:09 +01:00
|
|
|
alsa-lib
|
2019-01-14 10:05:13 +00:00
|
|
|
at-spi2-atk
|
2019-11-02 16:09:44 +00:00
|
|
|
at-spi2-core
|
2021-09-08 23:01:45 +01:00
|
|
|
atk
|
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
|
2021-05-02 04:24:13 +01:00
|
|
|
ffmpeg
|
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
|
2021-03-25 08:29:56 +00:00
|
|
|
gtk3
|
2020-10-12 10:13:57 +01:00
|
|
|
libdrm
|
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
|
2021-03-25 08:29:56 +00:00
|
|
|
libxkbcommon
|
2020-10-12 10:13:57 +01:00
|
|
|
mesa
|
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
|
2021-09-08 23:01:45 +01:00
|
|
|
xorg.libICE
|
|
|
|
xorg.libSM
|
2015-09-15 10:26:18 +01:00
|
|
|
xorg.libX11
|
2021-09-08 23:01:45 +01:00
|
|
|
xorg.libxcb
|
2015-09-15 10:26:18 +01:00
|
|
|
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
|
2021-09-08 23:01:45 +01:00
|
|
|
xorg.libxshmfence
|
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 {
|
2020-09-20 22:37:59 +01:00
|
|
|
pname = "spotify-unwrapped";
|
2019-08-13 22:52:01 +01:00
|
|
|
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";
|
2022-03-04 12:10:15 +00:00
|
|
|
sha512 = "91385a5a8de31d6e9f1945d23108447fd369c1cdc2e4d95cbb7cec5d403c3be14a1b0fabe3fb01aef809a39b033d289add1bcb307ab19c7fcb63689dbae57c53";
|
2017-04-16 06:52:23 +01:00
|
|
|
};
|
2011-01-05 23:23:22 +00:00
|
|
|
|
2021-07-14 21:52:27 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper wrapGAppsHook squashfsTools ];
|
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
|
|
|
|
'';
|
|
|
|
|
2021-07-14 21:52:27 +01:00
|
|
|
# Prevent double wrapping
|
|
|
|
dontWrapGApps = true;
|
|
|
|
|
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
|
|
|
|
treewide: use lib.getLib for OpenSSL libraries
At some point, I'd like to make another attempt at
71f1f4884b5 ("openssl: stop static binaries referencing libs"), which
was reverted in 195c7da07df. One problem with my previous attempt is
that I moved OpenSSL's libraries to a lib output, but many dependent
packages were hardcoding the out output as the location of the
libraries. This patch fixes every such case I could find in the tree.
It won't have any effect immediately, but will mean these packages
will automatically use an OpenSSL lib output if it is reintroduced in
future.
This patch should cause very few rebuilds, because it shouldn't make
any change at all to most packages I'm touching. The few rebuilds
that are introduced come from when I've changed a package builder not
to use variable names like openssl.out in scripts / substitution
patterns, which would be confusing since they don't hardcode the
output any more.
I started by making the following global replacements:
${pkgs.openssl.out}/lib -> ${lib.getLib pkgs.openssl}/lib
${openssl.out}/lib -> ${lib.getLib openssl}/lib
Then I removed the ".out" suffix when part of the argument to
lib.makeLibraryPath, since that function uses lib.getLib internally.
Then I fixed up cases where openssl was part of the -L flag to the
compiler/linker, since that unambigously is referring to libraries.
Then I manually investigated and fixed the following packages:
- pycurl
- citrix-workspace
- ppp
- wraith
- unbound
- gambit
- acl2
I'm reasonably confindent in my fixes for all of them.
For acl2, since the openssl library paths are manually provided above
anyway, I don't think openssl is required separately as a build input
at all. Removing it doesn't make a difference to the output size, the
file list, or the closure.
I've tested evaluation with the OfBorg meta checks, to protect against
introducing evaluation failures.
2022-03-25 15:33:21 +00:00
|
|
|
ln -s ${lib.getLib openssl}/lib/libssl.so $libdir/libssl.so.1.0.0
|
|
|
|
ln -s ${lib.getLib openssl}/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
|
|
|
|
2021-05-02 04:24:13 +01:00
|
|
|
ln -s ${ffmpeg.out}/lib/libavcodec.so* $libdir
|
|
|
|
ln -s ${ffmpeg.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
|
|
|
|
2021-01-15 13:21:58 +00:00
|
|
|
librarypath="${lib.makeLibraryPath deps}:$libdir"
|
2016-01-06 22:28:11 +00:00
|
|
|
wrapProgram $out/share/spotify/spotify \
|
2021-07-14 21:52:27 +01:00
|
|
|
''${gappsWrapperArgs[@]} \
|
2016-01-06 22:28:11 +00:00
|
|
|
--prefix LD_LIBRARY_PATH : "$librarypath" \
|
2021-05-07 22:18:14 +01:00
|
|
|
--prefix PATH : "${gnome.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
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +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-12-26 14:13:48 +00:00
|
|
|
maintainers = with maintainers; [ eelco ftrvxmtrx sheenobu mudri timokau ma27 ];
|
2017-04-16 06:52:23 +01:00
|
|
|
platforms = [ "x86_64-linux" ];
|
2011-01-05 23:23:22 +00:00
|
|
|
};
|
|
|
|
}
|