summary refs log blame commit diff
path: root/pkgs/applications/science/logic/anders/default.nix
blob: bb60b2b8321af469c572b6033b608a85e448842c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                   



                                               







                                               
{ lib, fetchFromGitHub, ocamlPackages }:

ocamlPackages.buildDunePackage rec {
  pname = "anders";
  version = "1.1.1";

  useDune2 = true;

  src = fetchFromGitHub {
    owner = "groupoid";
    repo = "anders";
    rev = "${version}";
    sha256 = "sha256-JUiZoo2rNLfgs94TlJqUNzul/7ODisCjSFAzhgSp1z4=";
  };

  strictDeps = true;

  nativeBuildInputs = [ ocamlPackages.menhir ];
  buildInputs = [ ocamlPackages.zarith ];

  meta = with lib; {
    description = "Modal Homotopy Type System";
    homepage = "https://homotopy.dev/";
    license = licenses.isc;
    maintainers = [ maintainers.suhr ];
  };
}