vscode-extensions.yoavbls.pretty-ts-errors: 0.5.4 -> 0.6.1 (#363464)
[NixPkgs.git] / pkgs / development / ocaml-modules / optint / default.nix
blob2726e0aae88977e8b46f34e6637b8baf3fae9458
2   lib,
3   buildDunePackage,
4   fetchurl,
5 }:
7 buildDunePackage 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   };
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   };