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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
{
lib,
stdenv,
fetchFromGitHub,
desktop-file-utils,
glycin-loaders,
gobject-introspection,
meson,
ninja,
pkg-config,
wrapGAppsHook4,
vala,
evolution-data-server-gtk4,
glib,
glib-networking,
gnutls,
gst_all_1,
json-glib,
libadwaita,
libglycin,
libpeas2,
libphonenumber,
libportal-gtk4,
pipewire,
pulseaudio,
tinysparql,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "valent";
version = "1.0.0.alpha.49";
src = fetchFromGitHub {
owner = "andyholmes";
repo = "valent";
tag = "v${finalAttrs.version}";
hash = "sha256-dVV/rqd3DktI67DPo0qTs3VP7yZIAy7Ew5TSYsE6ZTA=";
fetchSubmodules = true;
};
strictDeps = true;
nativeBuildInputs = [
desktop-file-utils
gobject-introspection
meson
ninja
pkg-config
wrapGAppsHook4
vala
];
buildInputs = [
evolution-data-server-gtk4
glib
glib-networking
gnutls
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
json-glib
libadwaita
libglycin
glycin-loaders
libpeas2
libphonenumber
libportal-gtk4
pipewire
pulseaudio
tinysparql
];
passthru.updateScript = nix-update-script { };
meta = {
description = "Implementation of the KDE Connect protocol, built on GNOME platform libraries";
mainProgram = "valent";
longDescription = ''
Note that you have to open firewall ports for other devices
to connect to it. Use either:
```nix
programs.kdeconnect = {
enable = true;
package = pkgs.valent;
}
```
or open corresponding firewall ports directly:
```nix
networking.firewall = rec {
allowedTCPPortRanges = [ { from = 1714; to = 1764; } ];
allowedUDPPortRanges = allowedTCPPortRanges;
}
```
'';
homepage = "https://valent.andyholmes.ca";
changelog = "https://github.com/andyholmes/valent/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = with lib.licenses; [
gpl3Plus
cc0
cc-by-sa-30
];
maintainers = with lib.maintainers; [
aleksana
baduhai
];
platforms = lib.platforms.linux;
};
})
|