nicotine-plus: 3.3.5 -> 3.3.6 (#356319)

This commit is contained in:
Guillaume Girol 2024-11-23 17:58:41 +01:00 committed by GitHub
commit 398f231c2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 44 additions and 23 deletions

View File

@ -1197,6 +1197,12 @@
name = "alyaeanyx"; name = "alyaeanyx";
keys = [ { fingerprint = "1F73 8879 5E5A 3DFC E2B3 FA32 87D1 AADC D25B 8DEE"; } ]; keys = [ { fingerprint = "1F73 8879 5E5A 3DFC E2B3 FA32 87D1 AADC D25B 8DEE"; } ];
}; };
amadaluzia = {
email = "amad@atl.tools";
github = "amadaluzia";
githubId = 188314694;
name = "Artur Manuel";
};
amadejkastelic = { amadejkastelic = {
email = "amadejkastelic7@gmail.com"; email = "amadejkastelic7@gmail.com";
github = "amadejkastelic"; github = "amadejkastelic";

View File

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