nixpkgs/pkgs/applications/audio/lollypop/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

113 lines
2.1 KiB
Nix
Raw Normal View History

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