77 lines
1.4 KiB
Nix
77 lines
1.4 KiB
Nix
|
{ stdenv
|
||
|
, fetchFromGitHub
|
||
|
, glib
|
||
|
, gtk3
|
||
|
, json-glib
|
||
|
, sqlite
|
||
|
, libsoup
|
||
|
, gettext
|
||
|
, gspell
|
||
|
, vala
|
||
|
, meson
|
||
|
, ninja
|
||
|
, pkgconfig
|
||
|
, dconf
|
||
|
, gst_all_1
|
||
|
, wrapGAppsHook
|
||
|
, gobject-introspection
|
||
|
, glib-networking
|
||
|
, python3
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
version = "1.0.5";
|
||
|
pname = "cawbird";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "IBBoard";
|
||
|
repo = "cawbird";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "sha256:0prrrkgmnm78sq2c6yvy86qb3lcl51d250q7gvmqili2ffnjmamf";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
meson
|
||
|
ninja
|
||
|
vala
|
||
|
pkgconfig
|
||
|
wrapGAppsHook
|
||
|
python3
|
||
|
gobject-introspection # for setup hook
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
glib
|
||
|
gtk3
|
||
|
json-glib
|
||
|
sqlite
|
||
|
libsoup
|
||
|
gettext
|
||
|
dconf
|
||
|
gspell
|
||
|
glib-networking
|
||
|
] ++ (with gst_all_1; [
|
||
|
gstreamer
|
||
|
gst-plugins-base
|
||
|
gst-plugins-bad
|
||
|
(gst-plugins-good.override {
|
||
|
gtkSupport = true;
|
||
|
})
|
||
|
gst-libav
|
||
|
]);
|
||
|
|
||
|
postPatch = ''
|
||
|
chmod +x data/meson_post_install.py # patchShebangs requires executable file
|
||
|
patchShebangs data/meson_post_install.py
|
||
|
'';
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Native GTK Twitter client for the Linux desktop";
|
||
|
longDescription = "Cawbird is a modern, easy and fun Twitter client. Fork of the discontinued Corebird.";
|
||
|
homepage = "https://ibboard.co.uk/cawbird/";
|
||
|
license = licenses.gpl3;
|
||
|
platforms = platforms.linux;
|
||
|
maintainers = with stdenv.lib.maintainers; [ jonafato schmittlauch ];
|
||
|
};
|
||
|
}
|