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
33 lines
628 B
Nix
33 lines
628 B
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
ocamlPackages,
|
|
why3,
|
|
}:
|
|
|
|
with ocamlPackages;
|
|
buildDunePackage {
|
|
pname = "why3find";
|
|
version = "1.2.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://git.frama-c.com/-/project/1056/uploads/043312a7a70961338479016ac535c706/why3find-1.2.0.tbz";
|
|
hash = "sha256-eslkMBo0i0+Oy8jW9eRNuyGXuwkV6eeYcxZm5MfgA6w=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
dune-site
|
|
terminal_size
|
|
why3
|
|
yojson
|
|
zmq
|
|
];
|
|
|
|
meta = {
|
|
description = "Why3 Package Manager";
|
|
homepage = "https://git.frama-c.com/pub/why3find";
|
|
license = lib.licenses.lgpl21Only;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
};
|
|
}
|