lol
fork

Configure Feed

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

Adding vimprobable2. Patch by Alexander Forenmy.


svn path=/nixpkgs/trunk/; revision=31303

+41
+35
pkgs/applications/networking/browsers/vimprobable2/default.nix
··· 1 + {stdenv, fetchurl, makeWrapper, perl, pkgconfig, webkit, gtk, libX11, libsoup, 2 + glib_networking}: 3 + 4 + stdenv.mkDerivation { 5 + name = "vimprobable2-0.9.11.2"; 6 + src = fetchurl { 7 + url = "mirror://sourceforge/vimprobable/vimprobable2_0.9.11.2.tar.bz2"; 8 + sha256 = "017qwhndchmpsn2g38v85rjx00fss69aa1nmgj3v85k5zskv7z65"; 9 + }; 10 + buildInputs = [ makeWrapper perl pkgconfig libX11 libsoup webkit gtk ]; 11 + installPhase = '' 12 + make PREFIX=/ DESTDIR=$out install 13 + wrapProgram "$out/bin/vimprobable2" --prefix GIO_EXTRA_MODULES : \ 14 + ${glib_networking}/lib/gio/modules 15 + ''; 16 + 17 + meta = { 18 + description = '' 19 + Vimprobable is a web browser that behaves like the Vimperator plugin 20 + available for Mozilla Firefox 21 + ''; 22 + longDescription = '' 23 + Vimprobable is a web browser that behaves like the Vimperator plugin 24 + available for Mozilla Firefox. It is based on the WebKit engine (using 25 + GTK bindings). The goal of Vimprobable is to build a completely 26 + keyboard-driven, efficient and pleasurable browsing-experience. Its 27 + featureset might be considered "minimalistic", but not as minimalistic as 28 + being completely featureless. 29 + ''; 30 + homepage = "http://sourceforge.net/apps/trac/vimprobable"; 31 + license = "MIT"; 32 + maintainers = ["Alexander Foremny <alexanderforemny@googlemail.com>"]; 33 + }; 34 + } 35 +
+6
pkgs/top-level/all-packages.nix
··· 8627 8627 8628 8628 vice = callPackage ../misc/emulators/vice { }; 8629 8629 8630 + vimprobable2 = callPackage ../applications/networking/browsers/vimprobable2 { 8631 + inherit stdenv fetchurl makeWrapper perl pkgconfig webkit gtk; 8632 + inherit (xlibs) libX11; 8633 + inherit (gnome) libsoup glib_networking; 8634 + }; 8635 + 8630 8636 VisualBoyAdvance = callPackage ../misc/emulators/VisualBoyAdvance { }; 8631 8637 8632 8638 # Wine cannot be built in 64-bit; use a 32-bit build instead.