f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
31 lines
755 B
Nix
31 lines
755 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
...
|
|
}:
|
|
let
|
|
version = "0.6.0";
|
|
in
|
|
buildGoModule {
|
|
pname = "ardugotools";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "randomouscrap98";
|
|
repo = "ardugotools";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-lYpUb+AiQrcrBGBvnOwzDC4aX1F8o21DUnad56qb7zo=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|