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";
|
|
|
|
version = "0.0.3";
|
|
|
|
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";
|
|
|
|
sha256 = "0c7r3s6lal9xkixngkj25nqncj4s33ka40bjdi7fz7mly08djycj";
|
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
|
|
|
};
|
|
|
|
}
|