Files
2026-05-12 13:28:28 -05:00

23 lines
588 B
Nix

{
lib,
buildDunePackage,
fetchurl,
}:
buildDunePackage (finalAttrs: {
minimalOCamlVersion = "4.07";
version = "0.3.0";
pname = "optint";
src = fetchurl {
url = "https://github.com/mirage/optint/releases/download/v${finalAttrs.version}/optint-${finalAttrs.version}.tbz";
sha256 = "sha256-KVz/LBNLA4WxO6gdUAXZ+EG6QNSlAq7RDJl/I57xFHs=";
};
meta = {
homepage = "https://github.com/mirage/optint";
description = "Abstract type of integer between x64 and x86 architecture";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
})