5d26766cbf
Added homepage where missing, where the sources are pulled from: - https://github.com - https://git.sr.ht - https://gitlab.com - https://invent.kde.org - https://codeberg.org - https://gitlab.gnome.org - https://gitlab.freedesktop.org - https://git.FreeBSD.org - https://salsa.debian.org - https://git.tvdr.de - https://git.suckless.org
31 lines
597 B
Nix
31 lines
597 B
Nix
{
|
|
lib,
|
|
fetchFromGitLab,
|
|
buildDunePackage,
|
|
lwt,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "lwt-watcher";
|
|
version = "0.2";
|
|
src = fetchFromGitLab {
|
|
owner = "nomadic-labs";
|
|
repo = "lwt-watcher";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-35Z73bSzEEgTabNH2cD9lRdDczsyIMZR2ktyKx4aN9k=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
lwt
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "One-to-many broadcast in Lwt";
|
|
homepage = "https://gitlab.com/nomadic-labs/lwt-watcher";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.ulrikstrid ];
|
|
};
|
|
})
|