ardugotools: 0.6.0 -> 0.6.1

This commit is contained in:
luftmensch-luftmensch 2024-08-08 11:24:33 +02:00
parent d2974a6fb4
commit 63ac89e63a
No known key found for this signature in database

View File

@ -5,7 +5,7 @@
...
}:
let
version = "0.6.0";
version = "0.6.1";
in
buildGoModule {
pname = "ardugotools";
@ -14,12 +14,23 @@ buildGoModule {
src = fetchFromGitHub {
owner = "randomouscrap98";
repo = "ardugotools";
rev = "refs/tags/v${version}";
hash = "sha256-lYpUb+AiQrcrBGBvnOwzDC4aX1F8o21DUnad56qb7zo=";
rev = "v${version}";
hash = "sha256-SqeUcYa8XscwaJaCSIoZ9lEtRJ0hN01XJDyCJFX2dTc=";
};
vendorHash = "sha256-Z9ObsS+GwVsz6ZlXCgN0WlShHzbmx4WLa/1/XLSSAAs=";
checkFlags =
let
# Skip tests referencing a non-existing file
skippedTests = [
"TestRunLuaFlashcartGenerator_CategoriesOnly"
"TestRunLuaFlashcartGenerator_FullCart"
"TestRunLuaFlashcartGenerator_MakeCart"
];
in
[ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];
meta = {
description = "CLI toolset for Arduboy";
changelog = "https://github.com/randomouscrap98/ardugotools/releases/tag/v${version}";