ocamlPackages.ocamline: init at 1.2

This commit is contained in:
Merlin Göttlinger 2022-10-27 08:55:58 +02:00 committed by Vincent Laporte
parent 8b4b449543
commit 662358f16f
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ buildDunePackage, linenoise, fetchFromGitHub, lib }:
buildDunePackage rec {
pname = "ocamline";
version = "1.2";
src = fetchFromGitHub {
owner = "chrisnevers";
repo = pname;
rev = version;
sha256 = "Sljm/Bfr2Eo0d75tmJRuWUkkfHUYQ0g27+FzXBePnVg=";
};
propagatedBuildInputs = [ linenoise ];
meta = with lib; {
homepage = "https://chrisnevers.github.io/ocamline/";
description = "Command line interface for user input";
license = licenses.bsd3;
maintainers = with maintainers; [ mgttlinger ];
};
}

View file

@ -984,6 +984,8 @@ let
ocamlify = callPackage ../development/tools/ocaml/ocamlify { };
ocamline = callPackage ../development/ocaml-modules/ocamline { };
jsonrpc = callPackage ../development/ocaml-modules/ocaml-lsp/jsonrpc.nix { };
lsp = callPackage ../development/ocaml-modules/ocaml-lsp/lsp.nix { };
ocaml-lsp = callPackage ../development/ocaml-modules/ocaml-lsp { };