1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 16:42:09 +00:00
nixpkgs/pkgs/development/ocaml-modules/calendar/default.nix

24 lines
619 B
Nix
Raw Normal View History

2014-05-15 13:11:46 +01:00
{stdenv, fetchurl, ocaml, findlib}:
stdenv.mkDerivation {
name = "ocaml-calendar-2.5";
2014-05-15 13:11:46 +01:00
src = fetchurl {
url = https://forge.ocamlcore.org/frs/download.php/915/calendar-2.5.tar.bz2;
2014-05-15 13:11:46 +01:00
sha256 = "04pvhwb664g3s644c7v7419a3kvf5s3pynkhmk5j59dvlfm1yf0f";
};
buildInputs = [ocaml findlib];
createFindlibDestdir = true;
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";
platforms = ocaml.meta.platforms or [];
2014-05-15 13:11:46 +01:00
maintainers = [
stdenv.lib.maintainers.gal_bolle
];
};
}