treewide: sync gnome circle team packages with upstream (#395376)

This commit is contained in:
Aleksana
2025-04-18 19:31:48 +08:00
committed by GitHub
2 changed files with 13 additions and 11 deletions
+7 -4
View File
@@ -63,10 +63,13 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://github.com/bragefuglseth/keypunch";
license = lib.licenses.gpl3Plus;
mainProgram = "keypunch";
maintainers = with lib.maintainers; [
tomasajt
getchoo
];
maintainers =
with lib.maintainers;
[
tomasajt
getchoo
]
++ lib.teams.gnome-circle.members;
platforms = lib.platforms.linux;
};
})
+6 -7
View File
@@ -21,13 +21,12 @@
python3.pkgs.buildPythonApplication rec {
pname = "metadata-cleaner";
version = "2.5.6";
format = "other";
pyproject = false;
src = fetchFromGitLab {
owner = "rmnvgr";
repo = "metadata-cleaner";
rev = "v${version}";
tag = "v${version}";
hash = "sha256-J+nwgLbAFoh1gq3J4cqQEShZJCSZesyCjT9DfkCWIHs=";
};
@@ -61,15 +60,15 @@ python3.pkgs.buildPythonApplication rec {
updateScript = nix-update-script { };
};
meta = with lib; {
meta = {
description = "Python GTK application to view and clean metadata in files, using mat2";
mainProgram = "metadata-cleaner";
homepage = "https://gitlab.com/rmnvgr/metadata-cleaner";
changelog = "https://gitlab.com/rmnvgr/metadata-cleaner/-/blob/${src.rev}/CHANGELOG.md";
license = with licenses; [
changelog = "https://gitlab.com/rmnvgr/metadata-cleaner/-/blob/v${version}/CHANGELOG.md";
license = with lib.licenses; [
gpl3Plus
cc-by-sa-40
];
maintainers = with maintainers; [ dotlambda ] ++ lib.teams.gnome-circle.members;
maintainers = with lib.maintainers; [ dotlambda ];
};
}