ocamlPackages.clap: init at 0.3.0

This commit is contained in:
Vincent Laporte 2024-04-17 05:55:27 +02:00
parent edd8117bfa
commit de1dec5002
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib
, fetchFromGitHub
, buildDunePackage
}:
buildDunePackage rec {
pname = "clap";
version = "0.3.0";
minimalOCamlVersion = "4.07";
src = fetchFromGitHub {
owner = "rbardou";
repo = pname;
rev = version;
hash = "sha256-IEol27AVYs55ntvNprBxOk3/EsBKAdPkF3Td3w9qOJg=";
};
meta = {
description = "Command-Line Argument Parsing, imperative style with a consumption mechanism";
license = lib.licenses.mit;
};
}

View File

@ -192,6 +192,8 @@ let
cil = callPackage ../development/ocaml-modules/cil { };
clap = callPackage ../development/ocaml-modules/clap { };
class_group_vdf = callPackage ../development/ocaml-modules/class_group_vdf { };
cmarkit = callPackage ../development/ocaml-modules/cmarkit { };