lol

ocamlPackages.zarith: 1.12 -> 1.13

Diff: https://github.com/ocaml/Zarith/compare/release-1.12...release-1.13

Changelog: https://github.com/ocaml/Zarith/raw/release-1.13/Changes

authored by

Mario Rodas and committed by
Vincent Laporte
e985cd4c 40e5c027

+4 -3
+4 -3
pkgs/development/ocaml-modules/zarith/default.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "ocaml${ocaml.version}-zarith"; 12 - version = "1.12"; 12 + version = "1.13"; 13 13 src = fetchFromGitHub { 14 14 owner = "ocaml"; 15 15 repo = "Zarith"; 16 16 rev = "release-${version}"; 17 - sha256 = "1jslm1rv1j0ya818yh23wf3bb6hz7qqj9pn5fwl45y9mqyqa01s9"; 17 + sha256 = "sha256-CNVKoJeO3fsmWaV/dwnUA8lgI4ZlxR/LKCXpCXUrpSg="; 18 18 }; 19 19 20 20 nativeBuildInputs = [ pkg-config ocaml findlib ]; ··· 30 30 31 31 meta = with lib; { 32 32 description = "Fast, arbitrary precision OCaml integers"; 33 - homepage = "http://forge.ocamlcore.org/projects/zarith"; 33 + homepage = "https://github.com/ocaml/Zarith"; 34 + changelog = "https://github.com/ocaml/Zarith/raw/${src.rev}/Changes"; 34 35 license = licenses.lgpl2; 35 36 inherit (ocaml.meta) platforms; 36 37 maintainers = with maintainers; [ thoughtpolice vbgl ];