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
|
{ lib
, stdenv
, fetchFromGitHub
, vala
, meson
, ninja
, python3
, pkg-config
, wrapGAppsHook
, desktop-file-utils
, gtk4
, libadwaita
, json-glib
, glib
, glib-networking
, libxml2
, libgee
, libsoup
, libsecret
, gst_all_1
, nix-update-script
}:
stdenv.mkDerivation rec {
pname = "tuba";
version = "0.1.0";
src = fetchFromGitHub {
owner = "GeopJr";
repo = "Tuba";
rev = "v${version}";
hash = "sha256-dkURVzbDBrE4bBUvf2fPqvgLKE07tn7jl3OudZpEWUo=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
vala
python3
wrapGAppsHook
desktop-file-utils
];
buildInputs = [
glib
glib-networking
json-glib
libxml2
libgee
libsoup
gtk4
libadwaita
libsecret
] ++ (with gst_all_1; [
gstreamer
gst-libav
gst-plugins-base
(gst-plugins-good.override { gtkSupport = true; })
gst-plugins-bad
]);
passthru = {
updateScript = nix-update-script {
attrPath = "tuba";
};
};
meta = with lib; {
description = "Browse the Fediverse";
homepage = "https://tuba.geopjr.dev/";
license = licenses.gpl3Only;
maintainers = with maintainers; [ chuangzhu ];
};
}
|