ocamlPackages.miou: init at 0.1.0
This commit is contained in:
parent
9637bf38b4
commit
eb6aac6a73
2 changed files with 23 additions and 0 deletions
21
pkgs/development/ocaml-modules/miou/default.nix
Normal file
21
pkgs/development/ocaml-modules/miou/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ lib, buildDunePackage, fetchurl }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "miou";
|
||||
version = "0.1.0";
|
||||
|
||||
minimalOCamlVersion = "5.0.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/robur-coop/miou/releases/download/v${version}/miou-${version}.tbz";
|
||||
hash = "sha256-WTs6L9j4z1/0wKcGIZVwaNrATRGCTN5A6RwO7tY2phE=";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Composable concurrency primitives for OCaml";
|
||||
homepage = "https://git.robur.coop/robur/miou";
|
||||
changelog = "https://git.robur.coop/robur/miou/src/tag/v${version}/CHANGES.md";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ marsam ];
|
||||
};
|
||||
}
|
|
@ -1084,6 +1084,8 @@ let
|
|||
|
||||
minttea = callPackage ../development/ocaml-modules/minttea { };
|
||||
|
||||
miou = callPackage ../development/ocaml-modules/miou { };
|
||||
|
||||
mirage = callPackage ../development/ocaml-modules/mirage { };
|
||||
|
||||
mirage-block = callPackage ../development/ocaml-modules/mirage-block { };
|
||||
|
|
Loading…
Reference in a new issue