Merge pull request #211240 from SFrijters/arduino-cli-0.29.0

arduino-cli: 0.28.0 -> 0.29.0
This commit is contained in:
toonn 2023-01-18 00:41:13 +01:00 committed by GitHub
commit 8db958d6de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,18 +4,18 @@ let
pkg = buildGoModule rec {
pname = "arduino-cli";
version = "0.28.0";
version = "0.29.0";
src = fetchFromGitHub {
owner = "arduino";
repo = pname;
rev = version;
sha256 = "sha256-i6osx4j1YVAYaVVdEQ4ImfaIvXw5jPYmgpEYz6XGkY8=";
sha256 = "sha256-jew4KLpOOXE9N/h4qFqof8y26DQrvm78E/ARbbwocD4=";
};
subPackages = [ "." ];
vendorSha256 = "sha256-NIqsYAnW9elprKWjqmNIsF452thuWT1i8YNPUuuwjVs=";
vendorSha256 = "sha256-BunonnjzGnpcmGJXxEQXvjJLGvdSXUOK9zAhXoAemHY=";
doCheck = false;
@ -26,6 +26,7 @@ let
meta = with lib; {
inherit (src.meta) homepage;
description = "Arduino from the command line";
changelog = "https://github.com/arduino/arduino-cli/releases/tag/${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ ryantm ];
};