ocamlPackages.duppy: init at 0.9.2

This commit is contained in:
Daniel Olsen 2021-10-06 02:08:59 +02:00 committed by Vincent Laporte
parent f3c53f430f
commit 85665ca9d4
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, buildDunePackage, fetchFromGitHub, ocaml_pcre }:
buildDunePackage rec {
pname = "duppy";
version = "0.9.2";
src = fetchFromGitHub {
owner = "savonet";
repo = "ocaml-duppy";
rev = "v${version}";
sha256 = "132dawca1p5s965m40ldmnihlpgfm47y62kfbzgim7sgsdwxxw5y";
};
propagatedBuildInputs = [ ocaml_pcre ];
meta = with lib; {
homepage = "https://github.com/savonet/ocaml-duppy";
description = "Library providing monadic threads";
license = licenses.lgpl21Only;
maintainers = with maintainers; [ dandellion ];
};
}

View file

@ -349,6 +349,8 @@ let
dune-site = callPackage ../development/ocaml-modules/dune-site { };
duppy = callPackage ../development/ocaml-modules/duppy { };
duration = callPackage ../development/ocaml-modules/duration { };
dyn = callPackage ../development/ocaml-modules/dyn { };