···11+{stdenv, fetchurl, makeWrapper, perl, pkgconfig, webkit, gtk, libX11, libsoup,
22+glib_networking}:
33+44+stdenv.mkDerivation {
55+ name = "vimprobable2-0.9.11.2";
66+ src = fetchurl {
77+ url = "mirror://sourceforge/vimprobable/vimprobable2_0.9.11.2.tar.bz2";
88+ sha256 = "017qwhndchmpsn2g38v85rjx00fss69aa1nmgj3v85k5zskv7z65";
99+ };
1010+ buildInputs = [ makeWrapper perl pkgconfig libX11 libsoup webkit gtk ];
1111+ installPhase = ''
1212+ make PREFIX=/ DESTDIR=$out install
1313+ wrapProgram "$out/bin/vimprobable2" --prefix GIO_EXTRA_MODULES : \
1414+ ${glib_networking}/lib/gio/modules
1515+ '';
1616+1717+ meta = {
1818+ description = ''
1919+ Vimprobable is a web browser that behaves like the Vimperator plugin
2020+ available for Mozilla Firefox
2121+ '';
2222+ longDescription = ''
2323+ Vimprobable is a web browser that behaves like the Vimperator plugin
2424+ available for Mozilla Firefox. It is based on the WebKit engine (using
2525+ GTK bindings). The goal of Vimprobable is to build a completely
2626+ keyboard-driven, efficient and pleasurable browsing-experience. Its
2727+ featureset might be considered "minimalistic", but not as minimalistic as
2828+ being completely featureless.
2929+ '';
3030+ homepage = "http://sourceforge.net/apps/trac/vimprobable";
3131+ license = "MIT";
3232+ maintainers = ["Alexander Foremny <alexanderforemny@googlemail.com>"];
3333+ };
3434+}
3535+