Merge pull request #309308 from Nydragon/lollypop-bump-version-add-dep
lollypop: 1.4.37 -> 1.4.39 and add kid3 as buildinput
This commit is contained in:
commit
c26eaa2650
1 changed files with 27 additions and 31 deletions
|
@ -21,11 +21,12 @@
|
||||||
, wrapGAppsHook3
|
, wrapGAppsHook3
|
||||||
, lastFMSupport ? true
|
, lastFMSupport ? true
|
||||||
, youtubeSupport ? true
|
, youtubeSupport ? true
|
||||||
|
, kid3Support ? true
|
||||||
}:
|
}:
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "lollypop";
|
pname = "lollypop";
|
||||||
version = "1.4.37";
|
version = "1.4.39";
|
||||||
|
|
||||||
format = "other";
|
format = "other";
|
||||||
|
|
||||||
|
@ -35,7 +36,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
sha256 = "sha256-3GPmGNbbSxvLq0t3F9q1x64BwNQCEvFQWLb0bSO9KUY=";
|
sha256 = "sha256-VPHQwy2+XR9R7toIN5sNFB91ddROlL7Scr8AKLgUzuo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -48,32 +49,29 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
wrapGAppsHook3
|
wrapGAppsHook3
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = with gst_all_1; [
|
buildInputs = with gst_all_1;
|
||||||
gdk-pixbuf
|
[
|
||||||
glib
|
gdk-pixbuf
|
||||||
glib-networking
|
glib
|
||||||
gst-libav
|
glib-networking
|
||||||
gst-plugins-bad
|
gst-libav
|
||||||
gst-plugins-base
|
gst-plugins-bad
|
||||||
gst-plugins-good
|
gst-plugins-base
|
||||||
gst-plugins-ugly
|
gst-plugins-good
|
||||||
gstreamer
|
gst-plugins-ugly
|
||||||
gtk3
|
gstreamer
|
||||||
libhandy
|
gtk3
|
||||||
libsoup_3
|
libhandy
|
||||||
pango
|
libsoup_3
|
||||||
totem-pl-parser
|
pango
|
||||||
] ++ lib.optional lastFMSupport libsecret;
|
totem-pl-parser
|
||||||
|
] ++ lib.optional lastFMSupport libsecret;
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs;
|
||||||
beautifulsoup4
|
[ beautifulsoup4 pillow pycairo pygobject3 ]
|
||||||
pillow
|
++ lib.optional lastFMSupport pylast
|
||||||
pycairo
|
++ lib.optional youtubeSupport youtube-dl
|
||||||
pygobject3
|
++ lib.optional kid3Support pkgs.kid3;
|
||||||
]
|
|
||||||
++ lib.optional lastFMSupport pylast
|
|
||||||
++ lib.optional youtubeSupport youtube-dl
|
|
||||||
;
|
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
chmod +x meson_post_install.py
|
chmod +x meson_post_install.py
|
||||||
|
@ -95,9 +93,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru = {
|
passthru = { updateScript = nix-update-script { }; };
|
||||||
updateScript = nix-update-script { };
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
changelog = "https://gitlab.gnome.org/World/lollypop/tags/${version}";
|
changelog = "https://gitlab.gnome.org/World/lollypop/tags/${version}";
|
||||||
|
|
Loading…
Reference in a new issue