calligraphy: 1.0.1 -> 1.2.0, cleanup (#420378)

This commit is contained in:
Aleksana
2025-06-27 12:12:34 +08:00
committed by GitHub
+10 -4
View File
@@ -9,19 +9,20 @@
wrapGAppsHook4,
desktop-file-utils,
libadwaita,
nix-update-script,
}:
python3Packages.buildPythonApplication rec {
pname = "calligraphy";
version = "1.0.1";
version = "1.2.0";
pyproject = false; # Built with meson
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GeopJr";
repo = "Calligraphy";
rev = "refs/tags/v${version}";
hash = "sha256-Vqbrt8zS2PL4Fhc421DY+IkjD4nuGqSNTLlE8IYSmcI=";
tag = "v${version}";
hash = "sha256-KDml96oxnmTygTC+3rZ//wKv7xDSjw37+UHu3a3zuO4=";
};
nativeBuildInputs = [
@@ -46,6 +47,8 @@ python3Packages.buildPythonApplication rec {
makeWrapperArgs = [ "\${gappsWrapperArgs[@]}" ];
passthru.updateScript = nix-update-script { };
meta = {
description = "GTK tool turning text into ASCII banners";
homepage = "https://calligraphy.geopjr.dev";
@@ -55,7 +58,10 @@ python3Packages.buildPythonApplication rec {
cc0
];
mainProgram = "calligraphy";
maintainers = with lib.maintainers; [ aleksana ];
maintainers = with lib.maintainers; [
aleksana
awwpotato
];
platforms = lib.platforms.linux;
};
}