aboutsummaryrefslogtreecommitdiff
path: root/shell/idris.nix
blob: 4bf43150c8a397ec4c6a2cabffec0f9e78a24a27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{}:
with import <nixpkgs> {};
let
  idrDependencies = with pkgs.idrisPackages; [
    js
  ];
  dependencies = with pkgs; [
    idris2
  ];
in
stdenv.mkDerivation {
  name = "idris-pigeon";
  buildInputs = dependencies ++ idrDependencies;
}