ocamlPackages.integers: 0.4.0 -> 0.5.1

https://github.com/ocamllabs/ocaml-integers/raw/0.5.1/CHANGES.md

authored by Mario Rodas and committed by Vincent Laporte 4a8fec5e d2a08fef

+8 -5
+8 -5
pkgs/development/ocaml-modules/integers/default.nix
··· 1 - { lib, fetchzip, buildDunePackage, ocaml }: 2 3 buildDunePackage rec { 4 pname = "integers"; 5 - version = "0.4.0"; 6 7 useDune2 = lib.versionAtLeast ocaml.version "4.08"; 8 9 - src = fetchzip { 10 - url = "https://github.com/ocamllabs/ocaml-integers/archive/${version}.tar.gz"; 11 - sha256 = "0yp3ab0ph7mp5741g7333x4nx8djjvxzpnv3zvsndyzcycspn9dd"; 12 }; 13 14 meta = { 15 description = "Various signed and unsigned integer types for OCaml"; 16 license = lib.licenses.mit; 17 homepage = "https://github.com/ocamllabs/ocaml-integers"; 18 maintainers = [ lib.maintainers.vbgl ]; 19 }; 20 }
··· 1 + { lib, fetchFromGitHub, buildDunePackage, ocaml }: 2 3 buildDunePackage rec { 4 pname = "integers"; 5 + version = "0.5.1"; 6 7 useDune2 = lib.versionAtLeast ocaml.version "4.08"; 8 9 + src = fetchFromGitHub { 10 + owner = "ocamllabs"; 11 + repo = "ocaml-integers"; 12 + rev = version; 13 + sha256 = "0by5pc851fk7ccxqy1w2qc5jwn9z8whyqhs5gxlm5986vr9msnyi"; 14 }; 15 16 meta = { 17 description = "Various signed and unsigned integer types for OCaml"; 18 license = lib.licenses.mit; 19 homepage = "https://github.com/ocamllabs/ocaml-integers"; 20 + changelog = "https://github.com/ocamllabs/ocaml-integers/raw/${version}/CHANGES.md"; 21 maintainers = [ lib.maintainers.vbgl ]; 22 }; 23 }