Skip to content

Commit

Permalink
nix: go-junit-report 2.0.0 -> 2.1.0
Browse files Browse the repository at this point in the history
Should fix illegal XML char parsing, see
#4587
  • Loading branch information
yakimant committed Jan 22, 2024
1 parent bf5dcac commit cd9617c
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
android_sdk.accept_license = true;
};
overlays = [
(self: super: {
(final: prev: {
androidPkgs = pkgs.androidenv.composeAndroidPackages {
toolsVersion = "26.1.1";
platformToolsVersion = "33.0.3";
Expand All @@ -24,6 +24,17 @@
"extras;google;m2repository"
];
};

go-junit-report = prev.go-junit-report.overrideAttrs ( attrs : rec {
version = "2.1.0";

src = prev.fetchFromGitHub {
owner = "jstemmer";
repo = "go-junit-report";
rev = "v${version}";
sha256 = "sha256-s4XVjACmpd10C5k+P3vtcS/aWxI6UkSUPyxzLhD2vRI=";
};
});
})
];
}
Expand Down

0 comments on commit cd9617c

Please sign in to comment.