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
1
{ lib, buildGoModule, fetchFromGitHub }:
2
2
3
3
buildGoModule rec {
4
4
-
pname = "storrent-unstable";
5
5
-
version = "2021-10-10";
4
4
+
pname = "storrent";
5
5
+
version = "unstable-2023-01-14";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "jech";
9
9
repo = "storrent";
10
10
-
rev = "681733cf74de08bea251ada672ea8c666eb1b679";
11
11
-
sha256 = "0grrqgawswb44fahf40060jl691rlyccwlqkljvgy8mzzw1kjzj4";
10
10
+
rev = "86270ee777a19a521f8898a179485e0347f90ce0";
11
11
+
hash = "sha256-JYNtuyk4hhe1jZgY/5Bz91Ropdw/U7n1VKHYkdUjZ0I=";
12
12
};
13
13
14
14
-
vendorSha256 = "0sz2fz7bqgwd5i7sacyxs7bmb8ly6xrxrakqi9c446vzlkh898hj";
14
14
+
vendorHash = "sha256-iPKZPXsa6ya29N/u9QYd5LAm42+FtHZLGStRDxsAxe4=";
15
15
+
16
16
+
ldflags = [ "-s" "-w" ];
15
17
16
18
meta = with lib; {
17
19
homepage = "https://github.com/jech/storrent";
18
20
description = "An implementation of the BitTorrent protocol that is optimised for streaming media";
19
21
license = licenses.mit;
22
22
+
platforms = platforms.linux;
20
23
maintainers = [ maintainers.marsam ];
21
24
};
22
25
}