Merge pull request #18651 from jonafato/init-corebird-1.3.1

corebird: init at 1.3.1

+36
+1
lib/maintainers.nix
··· 197 197 joelmo = "Joel Moberg <joel.moberg@gmail.com>"; 198 198 joelteon = "Joel Taylor <me@joelt.io>"; 199 199 joko = "Ioannis Koutras <ioannis.koutras@gmail.com>"; 200 + jonafato = "Jon Banafato <jon@jonafato.com>"; 200 201 jpbernardy = "Jean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com>"; 201 202 jraygauthier = "Raymond Gauthier <jraygauthier@gmail.com>"; 202 203 juliendehos = "Julien Dehos <dehos@lisic.univ-littoral.fr>";
+33
pkgs/applications/networking/corebird/default.nix
··· 1 + { stdenv, fetchFromGitHub, gtk3, json_glib, sqlite, libsoup, gettext, vala_0_32 2 + , automake, autoconf, libtool, pkgconfig, gnome3, gst_all_1, wrapGAppsHook }: 3 + 4 + stdenv.mkDerivation rec { 5 + version = "1.3.1"; 6 + name = "corebird-${version}"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "baedert"; 10 + repo = "corebird"; 11 + rev = version; 12 + sha256 = "1a7b6hinl5p7yanf75a0khki2fvd04km1xlkwnspgx75cmnbnn5z"; 13 + }; 14 + 15 + preConfigure = '' 16 + ./autogen.sh 17 + ''; 18 + 19 + nativeBuildInputs = [ automake autoconf libtool pkgconfig wrapGAppsHook ]; 20 + 21 + buildInputs = [ 22 + gtk3 json_glib sqlite libsoup gettext vala_0_32 gnome3.rest 23 + ] ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-libav ]); 24 + 25 + meta = { 26 + description = "Native Gtk+ Twitter client for the Linux desktop"; 27 + longDescription = "Corebird is a modern, easy and fun Twitter client."; 28 + homepage = http://corebird.baedert.org; 29 + license = stdenv.lib.licenses.gpl3; 30 + platforms = stdenv.lib.platforms.linux; 31 + maintainers = [ stdenv.lib.maintainers.jonafato ]; 32 + }; 33 + }
+2
pkgs/top-level/all-packages.nix
··· 734 734 735 735 consul-template = callPackage ../tools/system/consul-template { }; 736 736 737 + corebird = callPackage ../applications/networking/corebird { }; 738 + 737 739 corosync = callPackage ../servers/corosync { }; 738 740 739 741 cherrytree = callPackage ../applications/misc/cherrytree { };