re-intentbuilderc: init at 1.0.2

This commit is contained in:
Stanisław Pitucha
2026-04-14 23:59:59 +10:00
parent c260267dbe
commit c712f79f67

View File

@@ -0,0 +1,28 @@
{
lib,
fetchFromCodeberg,
rustPlatform,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "re-intentbuilderc";
version = "1.0.2";
__structuredAttrs = true;
src = fetchFromCodeberg {
owner = "viraptor";
repo = "re-intentbuilderc";
tag = finalAttrs.version;
hash = "sha256-MucaZ+5MfwMj2nxMcKONxlVXaeHJnN1KVvP2961dQIY=";
};
cargoHash = "sha256-9PmIoXngNuWUXYa1f4CS5JS1yh+/9E8GBfjndIFEqTk=";
meta = {
mainProgram = "intentbuilderc";
description = "Open reimplementation of Apple's intentbuilderc";
homepage = "https://codeberg.com/viraptor/re-intentbuilderc";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ viraptor ];
platforms = lib.platforms.unix;
};
})