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
31 lines
657 B
Nix
31 lines
657 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchurl,
|
|
stdlib-shims,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "bheap";
|
|
version = "2.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/backtracking/${pname}/releases/download/${version}/${pname}-${version}.tbz";
|
|
sha256 = "0dpnpla20lgiicrxl2432m2fcr6y68msw3pnjxqb11xw6yrdfhsz";
|
|
};
|
|
|
|
useDune2 = true;
|
|
|
|
doCheck = true;
|
|
checkInputs = [
|
|
stdlib-shims
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "OCaml binary heap implementation by Jean-Christophe Filliatre";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
homepage = "https://github.com/backtracking/bheap";
|
|
};
|
|
}
|