System/devshells/idris2.nix

25 lines
459 B
Nix
Raw Normal View History

2024-11-30 09:39:53 +00:00
{ withSystem, inputs, ... }:
{
perSystem =
{
config,
pkgs,
inputs',
...
}:
{
devShells.idris2 = pkgs.mkShell {
buildInputs = with pkgs; [
# Idris toolchain
inputs'.nixpkgs-unstable.legacyPackages.idris2Packages.pack
inputs'.nixpkgs-unstable.legacyPackages.idris2
pkg-config
gmp
gnumake
chez
rlwrap
];
};
};
}