mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
4e42cac49d
This change was produced by searching for remaining occurrences of stdenv.lib and replacing them manually. Reference #108938.
24 lines
621 B
Nix
24 lines
621 B
Nix
{stdenv, lib, fetchurl, ocaml, findlib}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ocaml-calendar-2.5";
|
|
src = fetchurl {
|
|
url = "https://forge.ocamlcore.org/frs/download.php/915/calendar-2.5.tar.bz2";
|
|
sha256 = "04pvhwb664g3s644c7v7419a3kvf5s3pynkhmk5j59dvlfm1yf0f";
|
|
};
|
|
|
|
buildInputs = [ocaml findlib];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
meta = {
|
|
homepage = "https://forge.ocamlcore.org/projects/calendar/";
|
|
description = "An Objective Caml library managing dates and times";
|
|
license = "LGPL";
|
|
platforms = ocaml.meta.platforms or [];
|
|
maintainers = [
|
|
lib.maintainers.gal_bolle
|
|
];
|
|
};
|
|
}
|