nixpkgs/pkgs/development/ocaml-modules/lwt-watcher/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
522 B
Nix
Raw Normal View History

2021-07-15 15:20:46 +01:00
{ lib
, fetchFromGitLab
, buildDunePackage
, lwt
}:
buildDunePackage rec {
pname = "lwt-watcher";
2022-03-24 14:38:41 +00:00
version = "0.2";
2021-07-15 15:20:46 +01:00
src = fetchFromGitLab {
owner = "nomadic-labs";
repo = pname;
rev = "v${version}";
2022-03-24 14:38:41 +00:00
sha256 = "sha256-35Z73bSzEEgTabNH2cD9lRdDczsyIMZR2ktyKx4aN9k=";
2021-07-15 15:20:46 +01:00
};
useDune2 = true;
propagatedBuildInputs = [
lwt
];
doCheck = true;
meta = {
description = "One-to-many broadcast in Lwt";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ulrikstrid ];
};
}