nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

ocamlPackages.lwt-exit: init at 1.0

Co-authored-by: Vincent Laporte <vbgl@users.noreply.github.com>

authored by

Ulrik Strid
Vincent Laporte
and committed by
Vincent Laporte
b2c49d1d 8b247a73

+36
+34
pkgs/development/ocaml-modules/lwt-exit/default.nix
··· 1 + { lib 2 + , fetchFromGitLab 3 + , buildDunePackage 4 + , lwt 5 + , ptime 6 + }: 7 + 8 + buildDunePackage rec { 9 + pname = "lwt-exit"; 10 + version = "1.0"; 11 + src = fetchFromGitLab { 12 + owner = "nomadic-labs"; 13 + repo = pname; 14 + rev = "${version}"; 15 + sha256 = "1k763bmj1asj9ijar39rh3h1d59rckmsf21h2y8966lgglsf42bd"; 16 + }; 17 + 18 + useDune2 = true; 19 + 20 + minimalOCamlVersion = "4.08"; 21 + 22 + propagatedBuildInputs = [ 23 + lwt 24 + ptime 25 + ]; 26 + 27 + doCheck = true; 28 + 29 + meta = { 30 + description = "An opinionated clean-exit and signal-handling library for Lwt programs"; 31 + license = lib.licenses.mit; 32 + maintainers = [ lib.maintainers.ulrikstrid ]; 33 + }; 34 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 649 649 650 650 lwt-dllist = callPackage ../development/ocaml-modules/lwt-dllist { }; 651 651 652 + lwt-exit = callPackage ../development/ocaml-modules/lwt-exit { }; 653 + 652 654 lwt-watcher = callPackage ../development/ocaml-modules/lwt-watcher { }; 653 655 654 656 lwt_log = callPackage ../development/ocaml-modules/lwt_log { };