blob: 45e0fe8f204b297c8d2a2d1d26f8d07ea377c76b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule {
pname = "webwormhole";
version = "0-unstable-2025-12-22";
src = fetchFromGitHub {
owner = "saljam";
repo = "webwormhole";
rev = "abf852af0458ba79772d9c26ef01434165f217d8";
hash = "sha256-hP5MtIoGod3FS4TipNkgoyo43HWnywPintqpjmvrTc8=";
};
vendorHash = "sha256-ULlaicl4o/YyHSS64Q2hsl5l5Mm3C6cBG8zaxrEijOU=";
meta = {
description = "Send files using peer authenticated WebRTC";
homepage = "https://github.com/saljam/webwormhole";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ bbigras ];
mainProgram = "ww";
};
}
|