Files
nixpkgs/pkgs/development/ocaml-modules/landmarks/default.nix
Mutsuha Asada 95612d14de ocamlPackages.{landmarks, landmarks-ppx}: modernized derivation
- Removed with lib;
- Added meta.homepage, meta.longDescription, and meta.changelog
2025-06-11 05:44:24 +02:00

36 lines
1.0 KiB
Nix

{
lib,
fetchFromGitHub,
buildDunePackage,
ocaml,
}:
buildDunePackage rec {
pname = "landmarks";
version = "1.5";
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
owner = "LexiFi";
repo = "landmarks";
tag = "v${version}";
hash = "sha256-eIq02D19OzDOrMDHE1Ecrgk+T6s9vj2X6B2HY+z+K8Q=";
};
doCheck = lib.versionAtLeast ocaml.version "4.08" && lib.versionOlder ocaml.version "5.0";
meta = {
inherit (src.meta) homepage;
description = "Simple Profiling Library for OCaml";
longDescription = ''
Landmarks is a simple profiling library for OCaml. It provides
primitives to measure time spent in portion of instrumented code. The
instrumentation of the code may either done by hand, automatically or
semi-automatically using the ppx pepreprocessor (see landmarks-ppx package).
'';
changelog = "https://raw.githubusercontent.com/LexiFi/landmarks/refs/tags/v${version}/CHANGES.md";
maintainers = with lib.maintainers; [ kenran ];
license = lib.licenses.mit;
};
}