ocamlPackages.fiber: init at ${dune_3.version}

This commit is contained in:
Guillaume Girol 2022-04-24 12:00:00 +00:00
parent 4b55b3809e
commit 92e9415880
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildDunePackage, dune_3, stdune, dyn }:
buildDunePackage rec {
pname = "fiber";
inherit (dune_3) src version;
duneVersion = "3";
dontAddPrefix = true;
buildInputs = [ stdune dyn ];
preBuild = ''
rm -r vendor/csexp
'';
meta = with lib; {
description = "Structured concurrency library";
inherit (dune_3.meta) homepage;
maintainers = with lib.maintainers; [ ];
license = licenses.mit;
};
}

View file

@ -419,6 +419,8 @@ let
inherit (pkgs) ffmpeg;
};
fiber = callPackage ../development/ocaml-modules/fiber { };
fileutils = callPackage ../development/ocaml-modules/fileutils { };
findlib = callPackage ../development/tools/ocaml/findlib { };