We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35e8fb0 commit da61704Copy full SHA for da61704
flake.nix
@@ -21,12 +21,13 @@
21
npkgs = import nixpkgs { inherit system; };
22
inherit (npkgs)
23
dhall
24
+ idris2
25
lib;
26
inherit (npkgs.haskellPackages)
27
dhall-json;
28
29
version = import ./version.nix;
- idrisPkgs = idris.packages.${system} // papers;
30
+ idrisPkgs = papers;
31
32
callPackage = lib.callPackageWith (npkgs // packages);
33
@@ -76,7 +77,7 @@
76
77
};
78
79
devShells.default = npkgs.mkShell {
- packages = [ idrisPkgs.idris2 papersLib npkgs.rlwrap dhall dhall-json ];
80
+ packages = [ idris2 papersLib npkgs.rlwrap dhall dhall-json ];
81
shellHook = ''
82
alias idris2="rlwrap -s 1000 idris2 --no-banner"
83
${self.checks.${system}.pre-commit-check.shellHook}
0 commit comments