Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
880 B
Nix
40 lines
880 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitLab,
|
|
ppxlib,
|
|
ppx_deriving,
|
|
result,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "visitors";
|
|
version = "20250212";
|
|
|
|
duneVersion = "3";
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "fpottier";
|
|
repo = pname;
|
|
rev = version;
|
|
domain = "gitlab.inria.fr";
|
|
sha256 = "sha256-AFD4+vriwVGt6lzDyIDuIMadakcgB4j235yty5qqFgQ=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
ppxlib
|
|
ppx_deriving
|
|
result
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.inria.fr/fpottier/visitors";
|
|
changelog = "https://gitlab.inria.fr/fpottier/visitors/-/raw/${version}/CHANGES.md";
|
|
license = licenses.lgpl21;
|
|
description = "OCaml syntax extension (technically, a ppx_deriving plugin) which generates object-oriented visitors for traversing and transforming data structures";
|
|
maintainers = [ ];
|
|
};
|
|
}
|