lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.asai: init at 0.1.1

authored by

Vincent Laporte and committed by
Vincent Laporte
7a9c0dbe 6b4981ec

+37
+35
pkgs/development/ocaml-modules/asai/default.nix
··· 1 + { lib, fetchFromGitHub, buildDunePackage 2 + , algaeff 3 + , bwd 4 + , eio 5 + , eio_main 6 + , lsp 7 + , notty 8 + }: 9 + 10 + buildDunePackage rec { 11 + pname = "asai"; 12 + version = "0.1.1"; 13 + src = fetchFromGitHub { 14 + owner = "RedPRL"; 15 + repo = pname; 16 + rev = version; 17 + hash = "sha256-Jd90WhSjK4K2amFA5uyGF57NzsgHA8QiccX6qtxO1rQ="; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + algaeff 22 + bwd 23 + lsp 24 + eio 25 + eio_main 26 + notty 27 + ]; 28 + 29 + meta = { 30 + description = "A library for constructing and printing compiler diagnostics"; 31 + homepage = "https://redprl.org/asai/asai/"; 32 + license = lib.licenses.asl20; 33 + maintainers = [ lib.maintainers.vbgl ]; 34 + }; 35 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 40 40 41 41 arp = callPackage ../development/ocaml-modules/arp { }; 42 42 43 + asai = callPackage ../development/ocaml-modules/asai { }; 44 + 43 45 asetmap = callPackage ../development/ocaml-modules/asetmap { }; 44 46 45 47 asn1-combinators = callPackage ../development/ocaml-modules/asn1-combinators { };