Merge pull request #320975 from luftmensch-luftmensch/ardugotools_0.5.1

ardugotools: init at 0.5.1
This commit is contained in:
Aleksana 2024-06-21 23:55:08 +08:00 committed by GitHub
commit 243418e94b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,31 @@
{
lib,
buildGoModule,
fetchFromGitHub,
...
}:
let
version = "0.5.1";
in
buildGoModule {
pname = "ardugotools";
inherit version;
src = fetchFromGitHub {
owner = "randomouscrap98";
repo = "ardugotools";
rev = "refs/tags/v${version}";
hash = "sha256-c+sJoE5NML06bl6ch+OiN1vO0rdyE2gf/z4pzY7i5Qk=";
};
vendorHash = "sha256-Z9ObsS+GwVsz6ZlXCgN0WlShHzbmx4WLa/1/XLSSAAs=";
meta = {
description = "CLI toolset for Arduboy";
changelog = "https://github.com/randomouscrap98/ardugotools/releases/tag/v${version}";
homepage = "https://github.com/randomouscrap98/ardugotools";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
mainProgram = "ardugotools";
};
}