My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/lwt-exit/default.nix

35 lines
650 B

{ lib
, fetchFromGitLab
, buildDunePackage
, lwt
, ptime
}:
buildDunePackage rec {
pname = "lwt-exit";
version = "1.0";
src = fetchFromGitLab {
owner = "nomadic-labs";
repo = pname;
rev = "${version}";
sha256 = "1k763bmj1asj9ijar39rh3h1d59rckmsf21h2y8966lgglsf42bd";
};
useDune2 = true;
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [
lwt
ptime
];
# for some reason this never exits
doCheck = false;
meta = {
description = "An opinionated clean-exit and signal-handling library for Lwt programs";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ulrikstrid ];
};
}