Unverified Commit e2e4a9f0 authored by Vincent Laporte's avatar Vincent Laporte
Browse files

ocamlPackages.lwt-watcher: small cleaning

parent 5c1dd504
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -5,18 +5,16 @@
  lwt,
}:

buildDunePackage rec {
buildDunePackage (finalAttrs: {
  pname = "lwt-watcher";
  version = "0.2";
  src = fetchFromGitLab {
    owner = "nomadic-labs";
    repo = pname;
    rev = "v${version}";
    repo = "lwt-watcher";
    tag = "v${finalAttrs.version}";
    hash = "sha256-35Z73bSzEEgTabNH2cD9lRdDczsyIMZR2ktyKx4aN9k=";
  };

  useDune2 = true;

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