1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00
nixpkgs/pkgs/applications/audio/lollypop/default.nix

99 lines
2 KiB
Nix
Raw Normal View History

{ lib
, fetchgit
, meson
, ninja
, pkgconfig
, python3
, gtk3
, gst_all_1
, libsecret
, libsoup
, appstream-glib
, desktop-file-utils
, totem-pl-parser
, hicolor-icon-theme
, gobject-introspection
, wrapGAppsHook
, lastFMSupport ? true
, wikipediaSupport ? true
, youtubeSupport ? true, youtube-dl
}:
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";
version = "1.1.4.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;
sha256 = "0rn3q7xslqq5hw4wb739ywg5dr99xpkbmyw80y84rsg0wfrwbjlc";
2018-06-16 01:17:01 +01:00
};
2019-01-25 19:00:47 +00:00
nativeBuildInputs = [
appstream-glib
2018-06-16 01:17:01 +01:00
desktop-file-utils
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; [
gobject-introspection
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
hicolor-icon-theme
2018-09-12 07:07:39 +01:00
libsoup
totem-pl-parser
] ++ 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
]
++ lib.optional lastFMSupport pylast
++ lib.optional wikipediaSupport wikipedia
++ 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
'';
preFixup = ''
2018-12-12 08:08:56 +00:00
buildPythonPath "$out $propagatedBuildInputs"
2018-09-12 07:07:39 +01:00
patchPythonScript "$out/libexec/lollypop-sp"
2018-06-16 01:17:01 +01:00
'';
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;
makeWrapperArgs = [
"\${gappsWrapperArgs[@]}"
];
meta = with lib; {
2018-06-16 01:17:01 +01:00
description = "A modern music player for GNOME";
2018-12-12 08:08:56 +00:00
homepage = https://wiki.gnome.org/Apps/Lollypop;
license = licenses.gpl3Plus;
changelog = "https://gitlab.gnome.org/World/lollypop/tags/${version}";
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
};
}