python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / ocaml-version / default.nix
blobaeb9c9dc699caa7b34de5b715c38225effdb8112
1 { lib, fetchurl, buildDunePackage }:
3 buildDunePackage rec {
4   pname = "ocaml-version";
5   version = "3.4.0";
7   src = fetchurl {
8     url = "https://github.com/ocurrent/ocaml-version/releases/download/v${version}/ocaml-version-v${version}.tbz";
9     sha256 = "sha256-2MG+tejY67dxC19DTOZqPsi3UrHk1rqHxP4nRSvbiiU=";
10   };
12   minimumOCamlVersion = "4.07";
13   useDune2 = true;
15   meta = with lib; {
16     description = "Manipulate, parse and generate OCaml compiler version strings";
17     homepage = "https://github.com/ocurrent/ocaml-version";
18     license = licenses.isc;
19     maintainers = with maintainers; [ vbgl ];
20   };