3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/ocaml-modules/calendar/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
679 B
Nix
Raw Normal View History

2021-11-09 19:53:19 +00:00
{ stdenv, lib, fetchurl, ocaml, findlib }:
2014-05-15 13:11:46 +01:00
stdenv.mkDerivation rec {
pname = "ocaml-calendar";
version = "2.5";
2014-05-15 13:11:46 +01:00
src = fetchurl {
url = "https://forge.ocamlcore.org/frs/download.php/915/calendar-${version}.tar.bz2";
2014-05-15 13:11:46 +01:00
sha256 = "04pvhwb664g3s644c7v7419a3kvf5s3pynkhmk5j59dvlfm1yf0f";
2021-11-09 19:53:19 +00:00
};
2014-05-15 13:11:46 +01:00
nativeBuildInputs = [ ocaml findlib ];
strictDeps = true;
2014-05-15 13:11:46 +01:00
createFindlibDestdir = true;
2021-11-09 19:53:19 +00:00
meta = {
homepage = "https://forge.ocamlcore.org/projects/calendar/";
2014-09-06 09:44:20 +01:00
description = "An Objective Caml library managing dates and times";
2014-05-15 13:11:46 +01:00
license = "LGPL";
2021-11-09 19:53:19 +00:00
platforms = ocaml.meta.platforms or [ ];
2014-05-15 13:11:46 +01:00
maintainers = [
lib.maintainers.gal_bolle
2014-05-15 13:11:46 +01:00
];
};
}