ocamlPackages.optint: 0.1.0 → 0.2.0

This commit is contained in:
Vincent Laporte 2022-07-02 07:36:25 +01:00
parent 1dd337e253
commit 390681fdaf
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F

View file

@ -1,16 +1,14 @@
{ lib, buildDunePackage, fetchurl }:
buildDunePackage rec {
minimumOCamlVersion = "4.07";
version = "0.1.0";
minimalOCamlVersion = "4.07";
version = "0.2.0";
pname = "optint";
src = fetchurl {
url = "https://github.com/mirage/optint/releases/download/v${version}/optint-v${version}.tbz";
sha256 = "27847660223c16cc7eaf8fcd9d5589a0b802114330a2529578f8007d3b01185d";
url = "https://github.com/mirage/optint/releases/download/v${version}/optint-${version}.tbz";
sha256 = "sha256-HcvgtrYDH3fbMwKMhxOP2zv5D5KRXjtmKd3rMKDTAAs=";
};
useDune2 = true;
meta = {
homepage = "https://github.com/mirage/optint";
description = "Abstract type of integer between x64 and x86 architecture";