summary refs log tree commit diff
path: root/pkgs/applications/networking/p2p/fragments/default.nix
blob: 721f0ca259f0d47e3062a270a1158bd5230266d5 (plain) (blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{ lib
, stdenv
, fetchFromGitLab
, meson
, vala
, ninja
, pkg-config
, wrapGAppsHook
, desktop-file-utils
, appstream-glib
, python3
, glib
, gtk3
, libhandy
, libtransmission
, libb64
, libutp
, miniupnpc
, dht
, libnatpmp
, libevent
, curl
, openssl
, zlib
}:

stdenv.mkDerivation rec {
  pname = "fragments";
  version = "1.5";

  src = fetchFromGitLab {
    domain = "gitlab.gnome.org";
    owner = "World";
    repo = "Fragments";
    rev = version;
    sha256 = "0x1kafhlgyi65l4w67c24r8mpvasg3q3c4wlgnjc9sxvp6ki7xbn";
  };

  patches = [
    # Fix dependency resolution
    ./dependency-resolution.patch
  ];

  nativeBuildInputs = [
    meson
    vala
    ninja
    pkg-config
    wrapGAppsHook
    desktop-file-utils
    appstream-glib
    python3
  ];

  buildInputs = [
    glib
    gtk3
    libhandy
    libtransmission
    libb64
    libutp
    miniupnpc
    dht
    libnatpmp
    libevent
    curl
    openssl
    zlib
  ];

  meta = with lib; {
    homepage = "https://gitlab.gnome.org/World/Fragments";
    description = "A GTK3 BitTorrent Client";
    maintainers = with maintainers; [ angustrau ];
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
  };
}