ocamlPackages.optint: 0.0.2 -> 0.0.3
Ensures compatibility with OCaml ≥ 4.08
This commit is contained in:
parent
c5f3851909
commit
827f62ef01
@ -1,28 +1,18 @@
|
||||
{ stdenv, fetchurl, ocaml, findlib, dune }:
|
||||
{ lib, buildDunePackage, fetchurl }:
|
||||
|
||||
if !stdenv.lib.versionAtLeast ocaml.version "4.02"
|
||||
then throw "optint is not available for OCaml ${ocaml.version}"
|
||||
else
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.0.2";
|
||||
name = "ocaml${ocaml.version}-optint-${version}";
|
||||
buildDunePackage rec {
|
||||
minimumOCamlVersion = "4.03";
|
||||
version = "0.0.3";
|
||||
pname = "optint";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mirage/optint/releases/download/v0.0.2/optint-v0.0.2.tbz";
|
||||
sha256 = "1lmb7nycmkr05y93slqi98i1lcs1w4kcngjzjwz7i230qqjpw9w1";
|
||||
url = "https://github.com/mirage/optint/releases/download/v${version}/optint-v${version}.tbz";
|
||||
sha256 = "0c7r3s6lal9xkixngkj25nqncj4s33ka40bjdi7fz7mly08djycj";
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml findlib dune ];
|
||||
|
||||
buildPhase = "dune build";
|
||||
|
||||
inherit (dune) installPhase;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/mirage/optint";
|
||||
description = "Abstract type of integer between x64 and x86 architecture";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = [ stdenv.lib.maintainers.vbgl ];
|
||||
inherit (ocaml.meta) platforms;
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.vbgl ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user