Skip to content

Commit 53e8ad3

Browse files
haskellPackages.agda2hs: fix build with Agda 2.8.0
Co-authored-by: sternenseemann <sternenseemann@systemli.org>
1 parent 5e18f49 commit 53e8ad3

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

pkgs/development/haskell-modules/configuration-common.nix

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2953,6 +2953,20 @@ with haskellLib;
29532953
# https://github.com/snoyberg/http-client/pull/563
29542954
http-client-tls = doJailbreak super.http-client-tls;
29552955

2956+
# agda2hs 1.3 is not compatible with Agda 2.8.0
2957+
agda2hs = lib.pipe super.agda2hs [
2958+
(warnAfterVersion "1.3")
2959+
(overrideSrc {
2960+
version = "1.3-unstable-2025-07-25";
2961+
src = pkgs.fetchFromGitHub {
2962+
owner = "agda";
2963+
repo = "agda2hs";
2964+
rev = "01cc0532b522f64223782617cbde1a6f21b8880e";
2965+
hash = "sha256-SXhnkZa8OmgpYRTb2IVTfebtX+GG5mkVcqKchl2Noic=";
2966+
};
2967+
})
2968+
];
2969+
29562970
bsb-http-chunked = lib.pipe super.bsb-http-chunked [
29572971
(warnAfterVersion "0.0.0.4")
29582972
# Last released in 2018

0 commit comments

Comments
 (0)