nixpkgs/pkgs/applications/misc/tuba/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

81 lines
1.3 KiB
Nix
Raw Normal View History

2023-03-23 12:57:04 +00:00
{ lib
, stdenv
, fetchFromGitHub
, vala
, meson
, ninja
, python3
, pkg-config
2023-04-05 11:02:11 +00:00
, wrapGAppsHook4
2023-03-23 12:57:04 +00:00
, desktop-file-utils
, gtk4
, libadwaita
, json-glib
, glib
, glib-networking
2023-04-05 11:02:11 +00:00
, gtksourceview5
2023-03-23 12:57:04 +00:00
, libxml2
, libgee
2023-04-05 11:02:11 +00:00
, libsoup_3
2023-03-23 12:57:04 +00:00
, libsecret
2023-05-23 18:34:21 +00:00
, libwebp
2023-03-23 12:57:04 +00:00
, gst_all_1
, nix-update-script
}:
stdenv.mkDerivation rec {
pname = "tuba";
2023-05-23 18:34:21 +00:00
version = "0.3.2";
2023-03-23 12:57:04 +00:00
src = fetchFromGitHub {
owner = "GeopJr";
repo = "Tuba";
rev = "v${version}";
2023-05-23 18:34:21 +00:00
hash = "sha256-PSEPpJn/lYpeI6AN2AY73NpOcDkMm0zNqeSdELn5HvY=";
2023-03-23 12:57:04 +00:00
};
nativeBuildInputs = [
meson
ninja
pkg-config
vala
python3
2023-04-05 11:02:11 +00:00
wrapGAppsHook4
2023-03-23 12:57:04 +00:00
desktop-file-utils
];
buildInputs = [
glib
glib-networking
2023-04-05 11:02:11 +00:00
gtksourceview5
2023-03-23 12:57:04 +00:00
json-glib
libxml2
libgee
2023-04-05 11:02:11 +00:00
libsoup_3
2023-03-23 12:57:04 +00:00
gtk4
libadwaita
libsecret
2023-05-23 18:34:21 +00:00
libwebp
2023-03-23 12:57:04 +00:00
] ++ (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/";
2023-04-05 11:02:11 +00:00
mainProgram = "dev.geopjr.Tuba";
2023-03-23 12:57:04 +00:00
license = licenses.gpl3Only;
2023-04-05 11:02:11 +00:00
changelog = "https://github.com/GeopJr/Tuba/releases/tag/v${version}";
2023-05-23 18:34:49 +00:00
maintainers = with maintainers; [ chuangzhu aleksana ];
2023-03-23 12:57:04 +00:00
};
}