python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / calendar / default.nix
blob4c089b76f3ed4f18403b7b64fbdc7a3a719bf169
1 { stdenv, lib, fetchurl, ocaml, findlib }:
3 stdenv.mkDerivation rec {
4   pname = "ocaml-calendar";
5   version = "2.5";
7   src = fetchurl {
8     url = "https://forge.ocamlcore.org/frs/download.php/915/calendar-${version}.tar.bz2";
9     sha256 = "04pvhwb664g3s644c7v7419a3kvf5s3pynkhmk5j59dvlfm1yf0f";
10   };
12   nativeBuildInputs = [ ocaml findlib ];
14   strictDeps = true;
16   createFindlibDestdir = true;
18   meta = {
19     homepage = "https://forge.ocamlcore.org/projects/calendar/";
20     description = "An Objective Caml library managing dates and times";
21     license = "LGPL";
22     platforms = ocaml.meta.platforms or [ ];
23     maintainers = [
24       lib.maintainers.gal_bolle
25     ];
26   };