Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
508 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
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 ];
};
}