Skip to content

Commit

Permalink
remove the jailbreak from agda2hs
Browse files Browse the repository at this point in the history
drop mention of ghc96 since we don't rely on it
  • Loading branch information
liesnikov authored and jespercockx committed Sep 24, 2024
1 parent c0542fa commit de82adc
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,12 @@
src = ./.;
};
helper = agda2hs.lib.${system};
hpkgs = pkgs.haskell.packages.ghc96;
agda2hs-ghc96 = pkgs.callPackage (helper.agda2hs-expr) {
agda2hs-drv = pkgs.callPackage (helper.agda2hs-expr) {
inherit self;
agda2hs = hpkgs.callPackage (helper.agda2hs-pkg "--jailbreak") {};
inherit (hpkgs) ghcWithPackages;
agda2hs = pkgs.haskellPackages.callPackage (helper.agda2hs-pkg "") {};
inherit (pkgs.haskellPackages) ghcWithPackages;
};
agda2hs-custom = agda2hs-ghc96.withPackages [agda2hs-lib];
agda2hs-custom = agda2hs-drv.withPackages [agda2hs-lib];
scope-pkg = import ./scope.nix;
scope-hs = pkgs.haskell.packages.ghc94.callPackage scope-pkg {agda2hs = agda2hs-custom;};
in {
Expand Down

0 comments on commit de82adc

Please sign in to comment.