Unverified Commit 63ac89e6 authored by luftmensch-luftmensch's avatar luftmensch-luftmensch
Browse files

ardugotools: 0.6.0 -> 0.6.1

parent d2974a6f
Loading
Loading
Loading
Loading
+14 −3
Original line number Diff line number Diff line
@@ -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}";