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
32 lines
544 B
Nix
32 lines
544 B
Nix
{
|
|
fetchurl,
|
|
buildDunePackage,
|
|
topkg,
|
|
findlib,
|
|
ocamlbuild,
|
|
ocaml,
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "asetmap";
|
|
version = "0.8.1";
|
|
src = fetchurl {
|
|
url = "https://github.com/dbuenzli/asetmap/archive/refs/tags/v${version}.tar.gz";
|
|
sha256 = "051ky0k62xp4inwi6isif56hx5ggazv4jrl7s5lpvn9cj8329frj";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
topkg
|
|
findlib
|
|
ocamlbuild
|
|
ocaml
|
|
];
|
|
buildInputs = [ topkg ];
|
|
|
|
inherit (topkg) buildPhase installPhase;
|
|
|
|
meta = { inherit (ocaml.meta) platforms; };
|
|
}
|