tuba: 0.1.0 -> 0.2.0

This commit is contained in:
Chuang Zhu 2023-04-05 19:02:11 +08:00
parent 53dad94e87
commit 4d25991c98

View file

@ -6,16 +6,17 @@
, ninja , ninja
, python3 , python3
, pkg-config , pkg-config
, wrapGAppsHook , wrapGAppsHook4
, desktop-file-utils , desktop-file-utils
, gtk4 , gtk4
, libadwaita , libadwaita
, json-glib , json-glib
, glib , glib
, glib-networking , glib-networking
, gtksourceview5
, libxml2 , libxml2
, libgee , libgee
, libsoup , libsoup_3
, libsecret , libsecret
, gst_all_1 , gst_all_1
, nix-update-script , nix-update-script
@ -23,12 +24,12 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "tuba"; pname = "tuba";
version = "0.1.0"; version = "0.2.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "GeopJr"; owner = "GeopJr";
repo = "Tuba"; repo = "Tuba";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-dkURVzbDBrE4bBUvf2fPqvgLKE07tn7jl3OudZpEWUo="; hash = "sha256-LPhGGIHvN/hc71PL50TBw1Q0ysubdtJaEiUEI29HRrE=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -37,17 +38,18 @@ stdenv.mkDerivation rec {
pkg-config pkg-config
vala vala
python3 python3
wrapGAppsHook wrapGAppsHook4
desktop-file-utils desktop-file-utils
]; ];
buildInputs = [ buildInputs = [
glib glib
glib-networking glib-networking
gtksourceview5
json-glib json-glib
libxml2 libxml2
libgee libgee
libsoup libsoup_3
gtk4 gtk4
libadwaita libadwaita
libsecret libsecret
@ -68,7 +70,9 @@ stdenv.mkDerivation rec {
meta = with lib; { meta = with lib; {
description = "Browse the Fediverse"; description = "Browse the Fediverse";
homepage = "https://tuba.geopjr.dev/"; homepage = "https://tuba.geopjr.dev/";
mainProgram = "dev.geopjr.Tuba";
license = licenses.gpl3Only; license = licenses.gpl3Only;
changelog = "https://github.com/GeopJr/Tuba/releases/tag/v${version}";
maintainers = with maintainers; [ chuangzhu ]; maintainers = with maintainers; [ chuangzhu ];
}; };
} }