mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
28 lines
604 B
Nix
28 lines
604 B
Nix
{ lib, fetchFromGitHub, ocamlPackages }:
|
|
|
|
ocamlPackages.buildDunePackage rec {
|
|
pname = "anders";
|
|
version = "1.1.1";
|
|
|
|
duneVersion = "3";
|
|
|
|
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 ];
|
|
};
|
|
}
|