83627f9931
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
31 lines
755 B
Nix
31 lines
755 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
...
|
|
}:
|
|
let
|
|
version = "0.5.2";
|
|
in
|
|
buildGoModule {
|
|
pname = "ardugotools";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "randomouscrap98";
|
|
repo = "ardugotools";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-ugYkcYrVHoGC58u6zQNEjlWspAFONmEQVnVDWdWeVnw=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|