gnome-secrets: 7.2 -> 8.0

This commit is contained in:
linsui 2023-11-21 19:00:06 +08:00
parent 56746b6d6c
commit 36b81e2704

View File

@ -1,4 +1,4 @@
{ lib, stdenv
{ lib
, meson
, ninja
, pkg-config
@ -12,11 +12,12 @@
, gobject-introspection
, desktop-file-utils
, appstream-glib
, libadwaita }:
, libadwaita
}:
python3Packages.buildPythonApplication rec {
pname = "gnome-secrets";
version = "7.2";
version = "8.0";
format = "other";
src = fetchFromGitLab {
@ -24,7 +25,7 @@ python3Packages.buildPythonApplication rec {
owner = "World";
repo = "secrets";
rev = version;
hash = "sha256-CE0iuXYHBhu07mjfXCnAPZQUD1Wy95L+tvBT+uepbrk=";
hash = "sha256-SEPQjl6hd8IBs0c0LBEYaqn2n8CGQmYSEMJp5yoL/PA=";
};
nativeBuildInputs = [
@ -67,5 +68,6 @@ python3Packages.buildPythonApplication rec {
license = licenses.gpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ mvnetbiz ];
mainProgram = "secrets";
};
}