nicotine-plus: 3.3.5 -> 3.3.6

This commit is contained in:
Artur Manuel 2024-11-16 00:32:57 +00:00
parent 27a548c032
commit 903651eba2

View File

@ -1,45 +1,57 @@
{ lib
, fetchFromGitHub
, wrapGAppsHook4
, gdk-pixbuf
, gettext
, gobject-introspection
, gtk4
, python3Packages
{
lib,
fetchFromGitHub,
wrapGAppsHook4,
gdk-pixbuf,
gettext,
gobject-introspection,
gtk4,
glib,
python3Packages,
libadwaita,
}:
python3Packages.buildPythonApplication rec {
pname = "nicotine-plus";
version = "3.3.5";
version = "3.3.6";
pyproject = true;
src = fetchFromGitHub {
owner = "nicotine-plus";
repo = "nicotine-plus";
rev = "refs/tags/${version}";
hash = "sha256-6tA3d+QX2ArDH4aeWZNKuIXe3Sk32JaFe8d0C8G9Akc=";
hash = "sha256-je3hyxbF9wKW2gvHoDp712EJxBxooS2z0pQM57WDdOk=";
};
nativeBuildInputs = [ gettext wrapGAppsHook4 gobject-introspection ];
propagatedBuildInputs = [
gdk-pixbuf
nativeBuildInputs = [
gettext
wrapGAppsHook4
gobject-introspection
glib
gdk-pixbuf
gtk4
];
buildInputs = [
libadwaita
];
dependencies = [
python3Packages.pygobject3
];
build-system = [
python3Packages.setuptools
];
postInstall = ''
ln -s $out/bin/nicotine $out/bin/nicotine-plus
'';
preFixup = ''
gappsWrapperArgs+=(
--prefix XDG_DATA_DIRS : "${gtk4}/share/gsettings-schemas/${gtk4.name}"
)
'';
dontWrapGAppsHook = true;
makeWrapperArgs = [
"\${gappsWrapperArgs[@]}"
];
doCheck = false;
meta = with lib; {
description = "Graphical client for the SoulSeek peer-to-peer system";
longDescription = ''
@ -49,6 +61,9 @@ python3Packages.buildPythonApplication rec {
'';
homepage = "https://www.nicotine-plus.org";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ klntsky ];
maintainers = with maintainers; [
klntsky
amadaluzia
];
};
}