1{ lib, buildDunePackage, fetchurl }:
2
3buildDunePackage rec {
4 minimalOCamlVersion = "4.07";
5 version = "0.3.0";
6 pname = "optint";
7 src = fetchurl {
8 url = "https://github.com/mirage/optint/releases/download/v${version}/optint-${version}.tbz";
9 sha256 = "sha256-KVz/LBNLA4WxO6gdUAXZ+EG6QNSlAq7RDJl/I57xFHs=";
10 };
11
12 meta = {
13 homepage = "https://github.com/mirage/optint";
14 description = "Abstract type of integer between x64 and x86 architecture";
15 license = lib.licenses.mit;
16 maintainers = [ lib.maintainers.vbgl ];
17 };
18}