Skip to content

Commit 215b697

Browse files
authored
Merge pull request #333193 from luftmensch-luftmensch/ardugotools_0.6.1
ardugotools: 0.6.0 -> 0.6.1
2 parents 9be98d3 + 63ac89e commit 215b697

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

pkgs/by-name/ar/ardugotools/package.nix

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
...
66
}:
77
let
8-
version = "0.6.0";
8+
version = "0.6.1";
99
in
1010
buildGoModule {
1111
pname = "ardugotools";
@@ -14,12 +14,23 @@ buildGoModule {
1414
src = fetchFromGitHub {
1515
owner = "randomouscrap98";
1616
repo = "ardugotools";
17-
rev = "refs/tags/v${version}";
18-
hash = "sha256-lYpUb+AiQrcrBGBvnOwzDC4aX1F8o21DUnad56qb7zo=";
17+
rev = "v${version}";
18+
hash = "sha256-SqeUcYa8XscwaJaCSIoZ9lEtRJ0hN01XJDyCJFX2dTc=";
1919
};
2020

2121
vendorHash = "sha256-Z9ObsS+GwVsz6ZlXCgN0WlShHzbmx4WLa/1/XLSSAAs=";
2222

23+
checkFlags =
24+
let
25+
# Skip tests referencing a non-existing file
26+
skippedTests = [
27+
"TestRunLuaFlashcartGenerator_CategoriesOnly"
28+
"TestRunLuaFlashcartGenerator_FullCart"
29+
"TestRunLuaFlashcartGenerator_MakeCart"
30+
];
31+
in
32+
[ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];
33+
2334
meta = {
2435
description = "CLI toolset for Arduboy";
2536
changelog = "https://github.com/randomouscrap98/ardugotools/releases/tag/v${version}";

0 commit comments

Comments
 (0)