2019-09-14 09:23:18 +01:00
|
|
|
{ lib, buildDunePackage, fetchurl }:
|
2018-11-04 06:49:27 +00:00
|
|
|
|
2019-09-14 09:23:18 +01:00
|
|
|
buildDunePackage rec {
|
|
|
|
minimumOCamlVersion = "4.03";
|
2020-12-06 12:46:56 +00:00
|
|
|
version = "0.0.4";
|
2019-09-14 09:23:18 +01:00
|
|
|
pname = "optint";
|
2018-11-04 06:49:27 +00:00
|
|
|
src = fetchurl {
|
2019-09-14 09:23:18 +01:00
|
|
|
url = "https://github.com/mirage/optint/releases/download/v${version}/optint-v${version}.tbz";
|
2020-12-06 12:46:56 +00:00
|
|
|
sha256 = "1a7gabxqmfvii8qnxq1clx43md2h9glskxhac8y8r0rhzblx3s1a";
|
2018-11-04 06:49:27 +00:00
|
|
|
};
|
|
|
|
|
2021-03-06 11:37:32 +00:00
|
|
|
useDune2 = true;
|
|
|
|
|
2018-11-04 06:49:27 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/mirage/optint";
|
|
|
|
description = "Abstract type of integer between x64 and x86 architecture";
|
2019-09-14 09:23:18 +01:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = [ lib.maintainers.vbgl ];
|
2018-11-04 06:49:27 +00:00
|
|
|
};
|
|
|
|
}
|