biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / tuba / default.nix
blob9c70ab85ae03e539e375176a8227bfda2beea9a7
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , vala
5 , meson
6 , ninja
7 , python3
8 , pkg-config
9 , wrapGAppsHook4
10 , desktop-file-utils
11 , gtk4
12 , libadwaita
13 , json-glib
14 , glib
15 , glib-networking
16 , gobject-introspection
17 , gtksourceview5
18 , libxml2
19 , libgee
20 , libsoup_3
21 , libsecret
22 , libwebp
23 , libspelling
24 , gst_all_1
25 , nix-update-script
28 stdenv.mkDerivation rec {
29   pname = "tuba";
30   version = "0.6.3";
31   src = fetchFromGitHub {
32     owner = "GeopJr";
33     repo = "Tuba";
34     rev = "v${version}";
35     hash = "sha256-AdUXKiTMC/0R4RI9I9Y/x0mNwhtUEIBke4Mm9lu9CX8=";
36   };
38   nativeBuildInputs = [
39     meson
40     ninja
41     pkg-config
42     vala
43     python3
44     wrapGAppsHook4
45     desktop-file-utils
46     gobject-introspection
47   ];
49   buildInputs = [
50     glib
51     glib-networking
52     gtksourceview5
53     json-glib
54     libxml2
55     libgee
56     libsoup_3
57     gtk4
58     libadwaita
59     libsecret
60     libwebp
61     libspelling
62   ] ++ (with gst_all_1; [
63     gstreamer
64     gst-libav
65     gst-plugins-base
66     (gst-plugins-good.override { gtkSupport = true; })
67     gst-plugins-bad
68   ]);
70   env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=int-conversion";
72   passthru = {
73     updateScript = nix-update-script { };
74   };
76   meta = with lib; {
77     description = "Browse the Fediverse";
78     homepage = "https://tuba.geopjr.dev/";
79     mainProgram = "dev.geopjr.Tuba";
80     license = licenses.gpl3Only;
81     changelog = "https://github.com/GeopJr/Tuba/releases/tag/v${version}";
82     maintainers = with maintainers; [ chuangzhu aleksana ];
83   };