ocamlPackages.duppy: init at 0.9.2
This commit is contained in:
parent
f3c53f430f
commit
85665ca9d4
2 changed files with 24 additions and 0 deletions
22
pkgs/development/ocaml-modules/duppy/default.nix
Normal file
22
pkgs/development/ocaml-modules/duppy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue