Files
nixpkgs/pkgs/development/ocaml-modules/randomconv/default.nix
2026-05-12 13:28:43 -05:00

26 lines
600 B
Nix

{
lib,
buildDunePackage,
fetchurl,
}:
buildDunePackage (finalAttrs: {
pname = "randomconv";
version = "0.2.0";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/hannesm/randomconv/releases/download/v${finalAttrs.version}/randomconv-${finalAttrs.version}.tbz";
hash = "sha256-sxce3wfjQaRGj5L/wh4qiGO4LtXDb3R3zJja8F1bY+o=";
};
meta = {
homepage = "https://github.com/hannesm/randomconv";
description = "Convert from random bytes to random native numbers";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
})