gummi: init at 0.6.6 (#30398)

* gummi: init at 0.6.6

* gummi: cleanup

authored by Florian Klink and committed by Jörg Thalheim c46fa38c 2820830e

+43
+41
pkgs/applications/misc/gummi/default.nix
···
··· 1 + { stdenv, fetchFromGitHub, pkgs, makeWrapper 2 + , glib, gnome2, gnome3, gtk2-x11, gtkspell2, poppler 3 + , pkgconfig, intltool, autoreconfHook, wrapGAppsHook 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + version = "0.6.6"; 8 + name = "gummi-${version}"; 9 + 10 + src = pkgs.fetchFromGitHub { 11 + owner = "alexandervdm"; 12 + repo = "gummi"; 13 + rev = "${version}"; 14 + sha256 = "1vw8rhv8qj82l6l22kpysgm9mxilnki2kjmvxsnajbqcagr6s7cn"; 15 + }; 16 + 17 + nativeBuildInputs = [ 18 + pkgconfig intltool autoreconfHook makeWrapper wrapGAppsHook 19 + ]; 20 + buildInputs = [ 21 + glib gnome2.gtksourceview gnome2.pango gtk2-x11 gtkspell2 poppler 22 + gnome3.defaultIconTheme 23 + ]; 24 + 25 + preConfigure = '' 26 + gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${pkgs.gnome2.gtksourceview}/share") 27 + ''; 28 + 29 + postInstall = '' 30 + install -Dpm644 COPYING $out/share/licenses/$name/COPYING 31 + ''; 32 + 33 + meta = { 34 + homepage = http://gummi.midnightcoding.org/; 35 + description = "Simple LaTex editor for GTK users"; 36 + license = stdenv.lib.licenses.mit; 37 + maintainers = with stdenv.lib.maintainers; [ flokli ]; 38 + platforms = with stdenv.lib.platforms; linux; 39 + inherit version; 40 + }; 41 + }
+2
pkgs/top-level/all-packages.nix
··· 19052 19053 guetzli = callPackage ../applications/graphics/guetzli { }; 19054 19055 gxemul = callPackage ../misc/emulators/gxemul { }; 19056 19057 hatari = callPackage ../misc/emulators/hatari { };
··· 19052 19053 guetzli = callPackage ../applications/graphics/guetzli { }; 19054 19055 + gummi = callPackage ../applications/misc/gummi { }; 19056 + 19057 gxemul = callPackage ../misc/emulators/gxemul { }; 19058 19059 hatari = callPackage ../misc/emulators/hatari { };