ocamlPackages.asai: init at 0.1.1

This commit is contained in:
Vincent Laporte 2023-10-09 08:40:39 +02:00 committed by Vincent Laporte
parent 6b4981ec81
commit 7a9c0dbe87
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib, fetchFromGitHub, buildDunePackage
, algaeff
, bwd
, eio
, eio_main
, lsp
, notty
}:
buildDunePackage rec {
pname = "asai";
version = "0.1.1";
src = fetchFromGitHub {
owner = "RedPRL";
repo = pname;
rev = version;
hash = "sha256-Jd90WhSjK4K2amFA5uyGF57NzsgHA8QiccX6qtxO1rQ=";
};
propagatedBuildInputs = [
algaeff
bwd
lsp
eio
eio_main
notty
];
meta = {
description = "A library for constructing and printing compiler diagnostics";
homepage = "https://redprl.org/asai/asai/";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.vbgl ];
};
}

View file

@ -40,6 +40,8 @@ let
arp = callPackage ../development/ocaml-modules/arp { };
asai = callPackage ../development/ocaml-modules/asai { };
asetmap = callPackage ../development/ocaml-modules/asetmap { };
asn1-combinators = callPackage ../development/ocaml-modules/asn1-combinators { };