mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
120 lines
2.3 KiB
Nix
120 lines
2.3 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitLab,
|
|
nix-update-script,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
python3,
|
|
gtk3,
|
|
gst_all_1,
|
|
libhandy,
|
|
libsecret,
|
|
libsoup_3,
|
|
appstream-glib,
|
|
desktop-file-utils,
|
|
totem-pl-parser,
|
|
gobject-introspection,
|
|
glib-networking,
|
|
gdk-pixbuf,
|
|
glib,
|
|
pango,
|
|
kid3,
|
|
wrapGAppsHook3,
|
|
lastFMSupport ? true,
|
|
youtubeSupport ? true,
|
|
kid3Support ? true,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "lollypop";
|
|
version = "1.4.40";
|
|
|
|
format = "other";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "World";
|
|
repo = pname;
|
|
rev = version;
|
|
fetchSubmodules = true;
|
|
hash = "sha256-hdReviNgcigXuNqJns6aPW+kixlpmRXtqrLlm/LGHBo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
appstream-glib
|
|
desktop-file-utils
|
|
gobject-introspection
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs =
|
|
(with gst_all_1; [
|
|
gst-libav
|
|
gst-plugins-bad
|
|
gst-plugins-base
|
|
gst-plugins-good
|
|
gst-plugins-ugly
|
|
gstreamer
|
|
|
|
])
|
|
++ [
|
|
gdk-pixbuf
|
|
glib
|
|
glib-networking
|
|
gtk3
|
|
libhandy
|
|
libsoup_3
|
|
pango
|
|
totem-pl-parser
|
|
]
|
|
++ lib.optional lastFMSupport libsecret;
|
|
|
|
propagatedBuildInputs =
|
|
(with python3.pkgs; [
|
|
beautifulsoup4
|
|
pillow
|
|
pycairo
|
|
pygobject3
|
|
])
|
|
++ lib.optional lastFMSupport python3.pkgs.pylast
|
|
++ lib.optional youtubeSupport python3.pkgs.yt-dlp
|
|
++ lib.optional kid3Support kid3;
|
|
|
|
postPatch = ''
|
|
chmod +x meson_post_install.py
|
|
patchShebangs meson_post_install.py
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapPythonProgramsIn $out/libexec "$out $propagatedBuildInputs"
|
|
'';
|
|
|
|
strictDeps = false;
|
|
|
|
# Produce only one wrapper using wrap-python passing
|
|
# gappsWrapperArgs to wrap-python additional wrapper
|
|
# argument
|
|
dontWrapGApps = true;
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://gitlab.gnome.org/World/lollypop/tags/${version}";
|
|
description = "Modern music player for GNOME";
|
|
homepage = "https://gitlab.gnome.org/World/lollypop";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ lovesegfault ];
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "lollypop";
|
|
};
|
|
}
|