Unverified Commit 5c1dd504 authored by Vincent Laporte's avatar Vincent Laporte
Browse files

ocamlPackages.lwt-exit: small cleaning

parent 34806a8e
Loading
Loading
Loading
Loading
+5 −9
Original line number Diff line number Diff line
@@ -6,20 +6,16 @@
  ptime,
}:

buildDunePackage rec {
buildDunePackage (finalAttrs: {
  pname = "lwt-exit";
  version = "1.0";
  src = fetchFromGitLab {
    owner = "nomadic-labs";
    repo = pname;
    rev = version;
    sha256 = "1k763bmj1asj9ijar39rh3h1d59rckmsf21h2y8966lgglsf42bd";
    repo = "lwt-exit";
    tag = finalAttrs.version;
    hash = "sha256-bQniNH2PGpOQFzAIp+tkOZUW4IA5jaxkTFKrIOsa5sw=";
  };

  useDune2 = true;

  minimalOCamlVersion = "4.08";

  propagatedBuildInputs = [
    lwt
    ptime
@@ -33,4 +29,4 @@ buildDunePackage rec {
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.ulrikstrid ];
  };
}
})