ocamlPackages.pure-splitmix: init at 0.3
This commit is contained in:
parent
4f3a868e59
commit
a7e62c21c1
22
pkgs/development/ocaml-modules/pure-splitmix/default.nix
Normal file
22
pkgs/development/ocaml-modules/pure-splitmix/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user