Skip to content

Commit

Permalink
remove the jailbreak now that aeson bounds are relaxed
Browse files Browse the repository at this point in the history
  • Loading branch information
liesnikov authored and jespercockx committed Sep 24, 2024
1 parent d934308 commit 2b72ccb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
'';
src = ./.;
};
# options provides a way to jailbreak for packages that use agda2hs
agda2hs-pkg = options:
pkgs.haskellPackages.haskellSrc2nix {
name = "agda2hs";
src = ./.;
extraCabal2nixOptions = options; #"--jailbreak"
};
# jailbreaking here because otherwise aeson has to be overridden and that triggers recompilation of a lot of dependencies
agda2hs-hs = pkgs.haskellPackages.callPackage (agda2hs-pkg "--jailbreak") {};
agda2hs-hs = pkgs.haskellPackages.callPackage (agda2hs-pkg "") {};
agda2hs-expr = import ./agda2hs.nix;
agda2hs = pkgs.callPackage agda2hs-expr {
inherit self;
Expand Down

0 comments on commit 2b72ccb

Please sign in to comment.