39b0c0c230
Upgrade corebird to the latest release to address new Twitter character limit rules.
33 lines
1 KiB
Nix
33 lines
1 KiB
Nix
{ stdenv, fetchFromGitHub, gtk3, json_glib, sqlite, libsoup, gettext, vala_0_32
|
|
, automake, autoconf, libtool, pkgconfig, gnome3, gst_all_1, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.3.2";
|
|
name = "corebird-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "baedert";
|
|
repo = "corebird";
|
|
rev = version;
|
|
sha256 = "1ps4l37dyj2pmzcly9jb95y7cqa8zm8hyfja5prsqj7pbka1fibn";
|
|
};
|
|
|
|
preConfigure = ''
|
|
./autogen.sh
|
|
'';
|
|
|
|
nativeBuildInputs = [ automake autoconf libtool pkgconfig wrapGAppsHook ];
|
|
|
|
buildInputs = [
|
|
gtk3 json_glib sqlite libsoup gettext vala_0_32 gnome3.rest
|
|
] ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-libav ]);
|
|
|
|
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 ];
|
|
};
|
|
}
|