tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
storrent: 2021-10-10 -> 2023-01-14
Mario Rodas
3 years ago
8842521f
0dbdc44d
+8
-5
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
p2p
storrent
default.nix
+8
-5
pkgs/applications/networking/p2p/storrent/default.nix
···
1
{ lib, buildGoModule, fetchFromGitHub }:
2
3
buildGoModule rec {
4
-
pname = "storrent-unstable";
5
-
version = "2021-10-10";
6
7
src = fetchFromGitHub {
8
owner = "jech";
9
repo = "storrent";
10
-
rev = "681733cf74de08bea251ada672ea8c666eb1b679";
11
-
sha256 = "0grrqgawswb44fahf40060jl691rlyccwlqkljvgy8mzzw1kjzj4";
12
};
13
14
-
vendorSha256 = "0sz2fz7bqgwd5i7sacyxs7bmb8ly6xrxrakqi9c446vzlkh898hj";
0
0
15
16
meta = with lib; {
17
homepage = "https://github.com/jech/storrent";
18
description = "An implementation of the BitTorrent protocol that is optimised for streaming media";
19
license = licenses.mit;
0
20
maintainers = [ maintainers.marsam ];
21
};
22
}
···
1
{ lib, buildGoModule, fetchFromGitHub }:
2
3
buildGoModule rec {
4
+
pname = "storrent";
5
+
version = "unstable-2023-01-14";
6
7
src = fetchFromGitHub {
8
owner = "jech";
9
repo = "storrent";
10
+
rev = "86270ee777a19a521f8898a179485e0347f90ce0";
11
+
hash = "sha256-JYNtuyk4hhe1jZgY/5Bz91Ropdw/U7n1VKHYkdUjZ0I=";
12
};
13
14
+
vendorHash = "sha256-iPKZPXsa6ya29N/u9QYd5LAm42+FtHZLGStRDxsAxe4=";
15
+
16
+
ldflags = [ "-s" "-w" ];
17
18
meta = with lib; {
19
homepage = "https://github.com/jech/storrent";
20
description = "An implementation of the BitTorrent protocol that is optimised for streaming media";
21
license = licenses.mit;
22
+
platforms = platforms.linux;
23
maintainers = [ maintainers.marsam ];
24
};
25
}