nixpkgs/pkgs/applications/networking/corebird/default.nix

39 lines
1.3 KiB
Nix
Raw Normal View History

2018-03-21 10:38:38 +00:00
{ stdenv, fetchFromGitHub, glib, gtk3, json-glib, sqlite, libsoup, gettext, vala_0_40
, meson, ninja, pkgconfig, gnome3, gst_all_1, wrapGAppsHook, gobjectIntrospection
, glib-networking }:
stdenv.mkDerivation rec {
2018-03-02 15:21:27 +00:00
version = "1.7.4";
name = "corebird-${version}";
src = fetchFromGitHub {
owner = "baedert";
repo = "corebird";
rev = version;
2018-03-02 15:21:27 +00:00
sha256 = "0qjffsmg1hm64dgsbkfwzbzy9q4xa1q4fh4h8ni8a2b1p3h80x7n";
};
2018-03-21 10:38:38 +00:00
nativeBuildInputs = [
meson ninja vala_0_40 pkgconfig wrapGAppsHook
gobjectIntrospection # for setup hook
];
buildInputs = [
2018-03-21 10:38:38 +00:00
glib gtk3 json-glib sqlite libsoup gettext gnome3.dconf gnome3.gspell glib-networking
] ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good (gst-plugins-bad.override { gtkSupport = true; }) gst-libav ]);
2018-03-21 10:38:38 +00:00
postPatch = ''
chmod +x data/meson_post_install.py # patchShebangs requires executable file
patchShebangs data/meson_post_install.py
'';
meta = {
description = "Native Gtk+ Twitter client for the Linux desktop";
longDescription = "Corebird is a modern, easy and fun Twitter client.";
2018-03-21 10:38:38 +00:00
homepage = https://corebird.baedert.org/;
license = stdenv.lib.licenses.gpl3;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.jonafato ];
};
}