ocamlPackages.pure-splitmix: init at 0.3

This commit is contained in:
Ulrik Strid 2022-04-20 09:24:51 +02:00 committed by Vincent Laporte
parent 4f3a868e59
commit a7e62c21c1
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, fetchFromGitHub, buildDunePackage }:
buildDunePackage rec {
pname = "pure-splitmix";
version = "0.3";
src = fetchFromGitHub {
owner = "Lysxia";
repo = pname;
rev = version;
sha256 = "RUnsAB4hMV87ItCyGhc47bHGY1iOwVv9kco2HxnzqbU=";
};
doCheck = true;
meta = with lib; {
homepage = "https://github.com/Lysxia/pure-splitmix";
description = "Purely functional splittable PRNG";
license = licenses.mit;
maintainers = [ maintainers.ulrikstrid ];
};
}

View file

@ -1112,6 +1112,8 @@ let
ptime = callPackage ../development/ocaml-modules/ptime { };
pure-splitmix = callPackage ../development/ocaml-modules/pure-splitmix { };
resource-pooling = callPackage ../development/ocaml-modules/resource-pooling { };
repr = callPackage ../development/ocaml-modules/repr { };