lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

gobby5: 0.5.0 → unstable-2018-04-03

fix build

+13 -19
+12 -16
pkgs/applications/editors/gobby/default.nix
··· 1 1 { avahiSupport ? false # build support for Avahi in libinfinity 2 - , gnomeSupport ? false # build support for Gnome(gnome-vfs) 3 - , stdenv, fetchurl, pkgconfig 4 - , gtkmm2, gsasl, gtksourceview, libxmlxx, libinfinity, intltool 5 - , gnome_vfs ? null}: 2 + , stdenv, fetchurl, fetchFromGitHub, autoconf, automake, pkgconfig, wrapGAppsHook 3 + , gtkmm3, gsasl, gtksourceview3, libxmlxx, libinfinity, intltool, itstool, gnome3 }: 6 4 7 5 let 8 6 libinf = libinfinity.override { gtkWidgets = true; inherit avahiSupport; }; 9 - 10 7 in stdenv.mkDerivation rec { 11 - 12 - name = "gobby-0.5.0"; 13 - src = fetchurl { 14 - url = "http://releases.0x539.de/gobby/${name}.tar.gz"; 15 - sha256 = "165x0r668ma5blziisvbr8qig3jw9hf7i6w8r7wwvz3wsac3bswc"; 8 + name = "gobby-unstable-2018-04-03"; 9 + src = fetchFromGitHub { 10 + owner = "gobby"; 11 + repo = "gobby"; 12 + rev = "ea4df27c9b6b885434797b0071ce198b23f9f63b"; 13 + sha256 = "0q7lq64yn16lxvj4jphs8y9194h0xppj8k7y9x8b276krraak2az"; 16 14 }; 17 15 18 - nativeBuildInputs = [ pkgconfig ]; 19 - buildInputs = [ gtkmm2 gsasl gtksourceview libxmlxx libinf intltool ] 20 - ++ stdenv.lib.optional gnomeSupport gnome_vfs; 21 - 22 - configureFlags = '' 23 - ''; 16 + nativeBuildInputs = [ autoconf automake pkgconfig intltool itstool gnome3.yelp-tools wrapGAppsHook ]; 17 + buildInputs = [ gtkmm3 gsasl gtksourceview3 libxmlxx libinf ]; 18 + 19 + preConfigure = "./autogen.sh"; 24 20 25 21 meta = with stdenv.lib; { 26 22 homepage = http://gobby.0x539.de/;
+1 -3
pkgs/top-level/all-packages.nix
··· 16499 16499 16500 16500 gocr = callPackage ../applications/graphics/gocr { }; 16501 16501 16502 - gobby5 = callPackage ../applications/editors/gobby { 16503 - inherit (gnome2) gtksourceview; 16504 - }; 16502 + gobby5 = callPackage ../applications/editors/gobby { }; 16505 16503 16506 16504 gphoto2 = callPackage ../applications/misc/gphoto2 { }; 16507 16505