ocamlPackages.eio: drop rec (#484659)

This commit is contained in:
Vincent Laporte
2026-01-28 09:22:32 +00:00
committed by GitHub
@@ -42,13 +42,13 @@ let
}
."${version}";
in
buildDunePackage rec {
buildDunePackage {
pname = "eio";
inherit version;
inherit (param) minimalOCamlVersion;
src = fetchurl {
url = "https://github.com/ocaml-multicore/${pname}/releases/download/v${version}/${pname}-${version}.tbz";
url = "https://github.com/ocaml-multicore/eio/releases/download/v${version}/eio-${version}.tbz";
inherit (param) hash;
};
@@ -75,8 +75,8 @@ buildDunePackage rec {
];
meta = {
homepage = "https://github.com/ocaml-multicore/${pname}";
changelog = "https://github.com/ocaml-multicore/${pname}/raw/v${version}/CHANGES.md";
homepage = "https://github.com/ocaml-multicore/eio";
changelog = "https://github.com/ocaml-multicore/eio/raw/v${version}/CHANGES.md";
description = "Effects-Based Parallel IO for OCaml";
license = with lib.licenses; [ isc ];
maintainers = with lib.maintainers; [ toastal ];