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