Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / pure-splitmix / default.nix
blob228f8ad8c488b127f77089361e241946a1f685cc
1 { lib, fetchFromGitHub, buildDunePackage }:
3 buildDunePackage rec {
4   pname = "pure-splitmix";
5   version = "0.3";
7   src = fetchFromGitHub {
8     owner = "Lysxia";
9     repo = pname;
10     rev = version;
11     sha256 = "RUnsAB4hMV87ItCyGhc47bHGY1iOwVv9kco2HxnzqbU=";
12   };
14   doCheck = true;
16   meta = with lib; {
17     homepage = "https://github.com/Lysxia/pure-splitmix";
18     description = "Purely functional splittable PRNG";
19     license = licenses.mit;
20     maintainers = [ maintainers.ulrikstrid ];
21   };