2018-02-25 03:23:58 +01:00
|
|
|
{ stdenv, fetchFromGitHub, gtk3, json-glib, sqlite, libsoup, gettext, vala_0_32
|
2017-03-04 11:19:23 +01:00
|
|
|
, automake, autoconf, libtool, pkgconfig, gnome3, gst_all_1, wrapGAppsHook
|
2018-02-25 03:23:58 +01:00
|
|
|
, glib-networking }:
|
2016-09-16 04:06:02 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-11-19 18:07:44 +01:00
|
|
|
version = "1.7.3";
|
2016-09-16 04:06:02 +02:00
|
|
|
name = "corebird-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "baedert";
|
|
|
|
repo = "corebird";
|
|
|
|
rev = version;
|
2017-11-19 18:07:44 +01:00
|
|
|
sha256 = "1xay22v5j239ppl6ydbj842zpm5v2mg5mcgpy5cjrhhmnbg79fgk";
|
2016-09-16 04:06:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeBuildInputs = [ automake autoconf libtool pkgconfig wrapGAppsHook ];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-02-25 03:23:58 +01:00
|
|
|
gtk3 json-glib sqlite libsoup gettext vala_0_32 gnome3.dconf gnome3.gspell glib-networking
|
2017-07-17 15:51:20 +02:00
|
|
|
] ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good (gst-plugins-bad.override { gtkSupport = true; }) gst-libav ]);
|
2016-09-16 04:06:02 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Native Gtk+ Twitter client for the Linux desktop";
|
|
|
|
longDescription = "Corebird is a modern, easy and fun Twitter client.";
|
|
|
|
homepage = http://corebird.baedert.org;
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.jonafato ];
|
|
|
|
};
|
|
|
|
}
|