about summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-10-24 22:11:14 -0500
committerGitHub <noreply@github.com>2021-10-24 22:11:14 -0500
commit0571aa40532d78cc8c0793452f02ca60106d0d36 (patch)
tree79808f9cb33c1ae7d7c1c1e993e5d25aac77b934 /pkgs/applications/networking/p2p
parentf0a0389dfca84a72c43259dee87691ec6eb464b5 (diff)
parentd212adce2ab3d0e631f6e48288d3d0d6c9e7286b (diff)
Merge pull request #142676 from marsam/init-storrent
storrent: init at 2021-10-10
Diffstat (limited to 'pkgs/applications/networking/p2p')
-rw-r--r--pkgs/applications/networking/p2p/storrent/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/networking/p2p/storrent/default.nix b/pkgs/applications/networking/p2p/storrent/default.nix
new file mode 100644
index 0000000000000..4c96200cc6860
--- /dev/null
+++ b/pkgs/applications/networking/p2p/storrent/default.nix
@@ -0,0 +1,22 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "storrent-unstable";
+  version = "2021-10-10";
+
+  src = fetchFromGitHub {
+    owner = "jech";
+    repo = "storrent";
+    rev = "681733cf74de08bea251ada672ea8c666eb1b679";
+    sha256 = "0grrqgawswb44fahf40060jl691rlyccwlqkljvgy8mzzw1kjzj4";
+  };
+
+  vendorSha256 = "0sz2fz7bqgwd5i7sacyxs7bmb8ly6xrxrakqi9c446vzlkh898hj";
+
+  meta = with lib; {
+    homepage = "https://github.com/jech/storrent";
+    description = "An implementation of the BitTorrent protocol that is optimised for streaming media";
+    license = licenses.mit;
+    maintainers = [ maintainers.marsam ];
+  };
+}