mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
ocamlPackages.clap: init at 0.3.0
This commit is contained in:
parent
edd8117bfa
commit
de1dec5002
24
pkgs/development/ocaml-modules/clap/default.nix
Normal file
24
pkgs/development/ocaml-modules/clap/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user