depot/third_party/nixpkgs/pkgs/development/ocaml-modules/fiber/default.nix
Default email dae973cb59 Project import generated by Copybara.
GitOrigin-RevId: c90c4025bb6e0c4eaf438128a3b2640314b1c58d
2023-03-08 18:32:21 +02:00

24 lines
596 B
Nix

{ lib, buildDunePackage, fetchFromGitHub, stdune, dyn }:
buildDunePackage rec {
pname = "fiber";
version = "unstable-2023-02-28";
src = fetchFromGitHub {
owner = "ocaml-dune";
repo = "fiber";
rev = "5563b588c1313f128eafa74d66f0626c9128d34d";
hash = "sha256-18GfGXpu+uiIiCuLhIx5z5jRkem1nNWaQB6Ms0AE9sE=";
};
duneVersion = "3";
buildInputs = [ stdune dyn ];
meta = with lib; {
description = "Structured concurrency library";
homepage = "https://github.com/ocaml-dune/fiber";
maintainers = with lib.maintainers; [ ];
license = licenses.mit;
};
}