biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / optint / default.nix
blobd98f6cf5ee2f271837c02723034e9418d9692603
1 { lib, buildDunePackage, fetchurl }:
3 buildDunePackage rec {
4   minimalOCamlVersion = "4.07";
5   version = "0.3.0";
6   pname = "optint";
7   src = fetchurl {
8     url = "https://github.com/mirage/optint/releases/download/v${version}/optint-${version}.tbz";
9     sha256 = "sha256-KVz/LBNLA4WxO6gdUAXZ+EG6QNSlAq7RDJl/I57xFHs=";
10   };
12   meta = {
13     homepage = "https://github.com/mirage/optint";
14     description = "Abstract type of integer between x64 and x86 architecture";
15     license = lib.licenses.mit;
16     maintainers = [ lib.maintainers.vbgl ];
17   };