2019-04-24 16:54:18 +01:00
|
|
|
{ lib
|
|
|
|
, fetchgit
|
2020-07-29 17:33:39 +01:00
|
|
|
, nix-update-script
|
2019-04-24 16:54:18 +01:00
|
|
|
, meson
|
|
|
|
, ninja
|
|
|
|
, pkgconfig
|
|
|
|
, python3
|
|
|
|
, gtk3
|
|
|
|
, gst_all_1
|
|
|
|
, libsecret
|
|
|
|
, libsoup
|
|
|
|
, appstream-glib
|
|
|
|
, desktop-file-utils
|
|
|
|
, totem-pl-parser
|
|
|
|
, gobject-introspection
|
2020-03-04 00:48:24 +00:00
|
|
|
, glib-networking
|
|
|
|
, gdk-pixbuf
|
|
|
|
, glib
|
|
|
|
, pango
|
2019-04-24 16:54:18 +01:00
|
|
|
, wrapGAppsHook
|
|
|
|
, lastFMSupport ? true
|
2019-08-06 19:05:25 +01:00
|
|
|
, youtubeSupport ? true
|
2019-04-24 16:54:18 +01:00
|
|
|
}:
|
2018-06-16 01:17:01 +01:00
|
|
|
|
2018-09-12 07:07:39 +01:00
|
|
|
python3.pkgs.buildPythonApplication rec {
|
2018-12-12 08:08:56 +00:00
|
|
|
pname = "lollypop";
|
2020-07-07 22:38:51 +01:00
|
|
|
version = "1.3.2";
|
2018-06-16 01:17:01 +01:00
|
|
|
|
2018-09-12 07:07:39 +01:00
|
|
|
format = "other";
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-06-16 01:17:01 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = "https://gitlab.gnome.org/World/lollypop";
|
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
fetchSubmodules = true;
|
2020-07-07 22:38:51 +01:00
|
|
|
sha256 = "14854j1dhq67s1vzs0lqy345vbl6f5w8nb36n4i33fmpva2flsk3";
|
2018-06-16 01:17:01 +01:00
|
|
|
};
|
|
|
|
|
2019-01-25 19:00:47 +00:00
|
|
|
nativeBuildInputs = [
|
2018-06-25 03:32:43 +01:00
|
|
|
appstream-glib
|
2018-06-16 01:17:01 +01:00
|
|
|
desktop-file-utils
|
2018-12-02 11:41:15 +00:00
|
|
|
gobject-introspection
|
2018-06-16 01:17:01 +01:00
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkgconfig
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
2018-09-12 07:07:39 +01:00
|
|
|
buildInputs = with gst_all_1; [
|
2020-03-04 00:48:24 +00:00
|
|
|
gdk-pixbuf
|
|
|
|
glib
|
|
|
|
glib-networking
|
2018-09-12 07:07:39 +01:00
|
|
|
gst-libav
|
|
|
|
gst-plugins-bad
|
|
|
|
gst-plugins-base
|
|
|
|
gst-plugins-good
|
|
|
|
gst-plugins-ugly
|
2018-06-16 01:17:01 +01:00
|
|
|
gstreamer
|
2018-09-12 07:07:39 +01:00
|
|
|
gtk3
|
|
|
|
libsoup
|
2020-03-04 00:48:24 +00:00
|
|
|
pango
|
2018-12-25 22:27:49 +00:00
|
|
|
totem-pl-parser
|
2019-04-24 16:54:18 +01:00
|
|
|
] ++ lib.optional lastFMSupport libsecret;
|
2018-06-16 01:17:01 +01:00
|
|
|
|
2018-12-12 08:08:56 +00:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
2018-06-16 01:17:01 +01:00
|
|
|
beautifulsoup4
|
|
|
|
pillow
|
|
|
|
pycairo
|
|
|
|
pygobject3
|
2019-04-24 16:54:18 +01:00
|
|
|
]
|
|
|
|
++ lib.optional lastFMSupport pylast
|
|
|
|
++ lib.optional youtubeSupport youtube-dl
|
|
|
|
;
|
2018-06-16 01:17:01 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
2018-09-12 07:07:39 +01:00
|
|
|
chmod +x meson_post_install.py
|
|
|
|
patchShebangs meson_post_install.py
|
|
|
|
'';
|
|
|
|
|
2019-09-29 06:40:27 +01:00
|
|
|
postFixup = ''
|
|
|
|
wrapPythonProgramsIn $out/libexec "$out $propagatedBuildInputs"
|
2018-06-16 01:17:01 +01:00
|
|
|
'';
|
|
|
|
|
2019-10-25 05:46:45 +01:00
|
|
|
strictDeps = false;
|
|
|
|
|
2019-07-13 15:48:04 +01:00
|
|
|
# Produce only one wrapper using wrap-python passing
|
|
|
|
# gappsWrapperArgs to wrap-python additional wrapper
|
|
|
|
# argument
|
|
|
|
dontWrapGApps = true;
|
|
|
|
|
2019-12-10 23:23:57 +00:00
|
|
|
preFixup = ''
|
|
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
|
|
'';
|
2019-07-13 15:48:04 +01:00
|
|
|
|
2020-07-29 17:33:39 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = nix-update-script {
|
|
|
|
attrPath = pname;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-04-24 16:54:18 +01:00
|
|
|
meta = with lib; {
|
2019-12-03 01:33:25 +00:00
|
|
|
changelog = "https://gitlab.gnome.org/World/lollypop/tags/${version}";
|
2018-06-16 01:17:01 +01:00
|
|
|
description = "A modern music player for GNOME";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://wiki.gnome.org/Apps/Lollypop";
|
2018-12-12 08:08:56 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2018-06-16 01:17:01 +01:00
|
|
|
maintainers = with maintainers; [ worldofpeace ];
|
2018-12-12 08:08:56 +00:00
|
|
|
platforms = platforms.linux;
|
2018-06-16 01:17:01 +01:00
|
|
|
};
|
|
|
|
}
|