corebird: 1.3.3 -> 1.4.2

This commit is contained in:
Jens Grunert 2017-03-28 21:06:41 +02:00
parent f9f5bec507
commit b603a943e5
1 changed files with 5 additions and 3 deletions

View File

@ -3,24 +3,26 @@
, glib_networking }: , glib_networking }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.3.3"; version = "1.4.2";
name = "corebird-${version}"; name = "corebird-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "baedert"; owner = "baedert";
repo = "corebird"; repo = "corebird";
rev = version; rev = version;
sha256 = "09k0jrhjqrmpvyz5pf1g7wkidflkhpvw5869a95vnhfxjd45kzs3"; sha256 = "0s28q9c7p4p4jyhb1g6gdwdphlf6yhi6yg4yn8bkd0gmyf9acakb";
}; };
preConfigure = '' preConfigure = ''
./autogen.sh ./autogen.sh
''; '';
configureFlags = [ "--disable-spellcheck" ];
nativeBuildInputs = [ automake autoconf libtool pkgconfig wrapGAppsHook ]; nativeBuildInputs = [ automake autoconf libtool pkgconfig wrapGAppsHook ];
buildInputs = [ buildInputs = [
gtk3 json_glib sqlite libsoup gettext vala_0_32 gnome3.rest gnome3.dconf glib_networking gtk3 json_glib sqlite libsoup gettext vala_0_32 gnome3.rest gnome3.dconf gnome3.gspell glib_networking
] ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-libav ]); ] ++ (with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-libav ]);
meta = { meta = {