File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed
pkgs/by-name/ar/ardugotools Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change 55 ...
66} :
77let
8- version = "0.6.0 " ;
8+ version = "0.6.1 " ;
99in
1010buildGoModule {
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 } " ;
You can’t perform that action at this time.
0 commit comments