summary refs log tree commit diff
path: root/pkgs/tools/networking/webwormhole
diff options
context:
space:
mode:
authorBruno Bigras <bigras.bruno@gmail.com>2021-02-26 20:24:44 -0500
committerGitHub <noreply@github.com>2021-02-26 20:24:44 -0500
commit1585a04bcb8deeb63a50c89e89dd0628a4d16077 (patch)
tree08ad841e9d20f3ac0b410f7d1c8939f6ba78706f /pkgs/tools/networking/webwormhole
parent36126fdbfabe7aa34d4f84d1ee9ac06cd371aada (diff)
downloadnixpkgs-1585a04bcb8deeb63a50c89e89dd0628a4d16077.tar
nixpkgs-1585a04bcb8deeb63a50c89e89dd0628a4d16077.tar.gz
nixpkgs-1585a04bcb8deeb63a50c89e89dd0628a4d16077.tar.bz2
nixpkgs-1585a04bcb8deeb63a50c89e89dd0628a4d16077.tar.lz
nixpkgs-1585a04bcb8deeb63a50c89e89dd0628a4d16077.tar.xz
nixpkgs-1585a04bcb8deeb63a50c89e89dd0628a4d16077.tar.zst
nixpkgs-1585a04bcb8deeb63a50c89e89dd0628a4d16077.zip
webwormhole: init at git-2021-01-16 (#114269)
Diffstat (limited to 'pkgs/tools/networking/webwormhole')
-rw-r--r--pkgs/tools/networking/webwormhole/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/networking/webwormhole/default.nix b/pkgs/tools/networking/webwormhole/default.nix
new file mode 100644
index 00000000000..8fbaf3159a2
--- /dev/null
+++ b/pkgs/tools/networking/webwormhole/default.nix
@@ -0,0 +1,22 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "webwormhole";
+  version = "unstable-2021-01-16";
+
+  src = fetchFromGitHub {
+    owner = "saljam";
+    repo = pname;
+    rev = "c85e196c8a8a885815136aa8aee1958ad80a3bb5";
+    sha256 = "D10xmBwmEbeR3nU4CmppFBzdeE4Pm2+o/Vb5Yd+pPtM=";
+  };
+
+  vendorSha256 = "sha256-yK04gjDO6JSDcJULcbJBBuPBhx792JNn+B227lDUrWk=";
+
+  meta = with lib; {
+    description = "Send files using peer authenticated WebRTC";
+    homepage = "https://github.com/saljam/webwormhole";
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ bbigras ];
+  };
+}