We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 821840d commit 00fa4c7Copy full SHA for 00fa4c7
flake.nix
@@ -8,7 +8,17 @@
8
flake-utils.lib.eachDefaultSystem (system:
9
let
10
pkgs = import nixpkgs {inherit system;};
11
- agda2lambox = pkgs.haskellPackages.callCabal2nix "agda2lambox" ./. {};
+ hpkgs = with pkgs; haskellPackages.override {
12
+ overrides = haskell.lib.packageSourceOverrides {
13
+ Agda = fetchFromGitHub {
14
+ owner = "agda";
15
+ repo = "agda";
16
+ rev = "5c29109f8212ef61b0091d62ef9c8bfdfa16cf36";
17
+ hash = "sha256-qiV/tk+/b3xYPJcWVVd7x9jrQjBzl1TXHPNEQbKV2rA=";
18
+ };
19
20
21
+ agda2lambox = hpkgs.callCabal2nix "agda2lambox" ./. {};
22
in {
23
packages = {
24
inherit agda2lambox;
0 commit comments