nix: go-junit-report 2.0.0 -> 2.1.0

Should fix illegal XML char parsing, see
https://github.com/status-im/status-go/issues/4587
This commit is contained in:
Anton Iakimov 2024-01-19 16:45:09 +01:00
parent bf5dcacdeb
commit cd9617cad7
No known key found for this signature in database
GPG Key ID: DEA1FE58DD8BF7FA
1 changed files with 12 additions and 1 deletions

View File

@ -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";
@ -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=";
};
});
})
];
}