oxvg: init at 0.0.5 (#537827)

This commit is contained in:
Yohann Boniface
2026-07-02 19:44:46 +00:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
+6
View File
@@ -28858,6 +28858,12 @@
github = "TyberiusPrime";
githubId = 1257580;
};
tyceherrman = {
email = "Tyce.Herrman@pm.me";
github = "TyceHerrman";
githubId = 22066434;
name = "Tyce Herrman";
};
tye-exe = {
name = "Tye";
email = "nixpkgs-fr@tye-home.xyz";
+33
View File
@@ -0,0 +1,33 @@
{
lib,
fetchCrate,
nix-update-script,
rustPlatform,
versionCheckHook,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "oxvg";
version = "0.0.5";
__structuredAttrs = true;
src = fetchCrate {
inherit (finalAttrs) pname version;
hash = "sha256-I52L0cbj7BYdHVVhJEdhT28DRTg/f7eWpN0qGxfSdhQ=";
};
cargoHash = "sha256-+dfM2/SjUTwNAoKC7cjw2Ba1RNp6BwmbR1TxXtp9W4E=";
nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "Vector image toolchain";
homepage = "https://github.com/noahbald/oxvg";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tyceherrman ];
mainProgram = "oxvg";
};
})