biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / calendar / default.nix
blob8fd3f5befef9354c8b7874f329ba50e8ed2bd32c
1 { lib, buildDunePackage, fetchFromGitHub, re }:
3 buildDunePackage rec {
4   pname = "calendar";
5   version = "3.0.0";
6   minimalOCamlVersion = "4.03";
8   src = fetchFromGitHub {
9     owner = "ocaml-community";
10     repo = pname;
11     rev = "v${version}";
12     sha256 = "sha256-+VQzi6pEMqzV1ZR84Yjdu4jsJEWtx+7bd6PQGX7TiEs=";
13   };
15   propagatedBuildInputs = [ re ];
17   meta = {
18     inherit (src.meta) homepage;
19     description = "A library for handling dates and times";
20     license = lib.licenses.lgpl21Plus;
21     maintainers = [ lib.maintainers.gal_bolle ];
22   };