2012-03-29 12:30:47 +02:00
|
|
|
{stdenv, fetchurl, makeWrapper, perl, pkgconfig, webkit_gtk2, gtk, libX11, libsoup,
|
2012-01-04 23:12:43 +01:00
|
|
|
glib_networking}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-03-25 22:16:01 +02:00
|
|
|
name = "vimprobable2-0.9.12.0";
|
2012-01-04 23:12:43 +01:00
|
|
|
src = fetchurl {
|
2012-03-25 22:16:01 +02:00
|
|
|
url = "mirror://sourceforge/vimprobable/vimprobable2_0.9.12.0.tar.bz2";
|
|
|
|
sha256 = "1b6xs6rd4rxy9kdsva13bbx7pd2gy159ad8ncd4pplsqr46hw8fb";
|
2012-01-04 23:12:43 +01:00
|
|
|
};
|
2012-03-29 12:30:47 +02:00
|
|
|
buildInputs = [ makeWrapper perl pkgconfig libX11 libsoup webkit_gtk2 gtk ];
|
2012-01-04 23:12:43 +01:00
|
|
|
installPhase = ''
|
|
|
|
make PREFIX=/ DESTDIR=$out install
|
|
|
|
wrapProgram "$out/bin/vimprobable2" --prefix GIO_EXTRA_MODULES : \
|
|
|
|
${glib_networking}/lib/gio/modules
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = ''
|
|
|
|
Vimprobable is a web browser that behaves like the Vimperator plugin
|
|
|
|
available for Mozilla Firefox
|
|
|
|
'';
|
|
|
|
longDescription = ''
|
|
|
|
Vimprobable is a web browser that behaves like the Vimperator plugin
|
|
|
|
available for Mozilla Firefox. It is based on the WebKit engine (using
|
|
|
|
GTK bindings). The goal of Vimprobable is to build a completely
|
|
|
|
keyboard-driven, efficient and pleasurable browsing-experience. Its
|
|
|
|
featureset might be considered "minimalistic", but not as minimalistic as
|
|
|
|
being completely featureless.
|
|
|
|
'';
|
|
|
|
homepage = "http://sourceforge.net/apps/trac/vimprobable";
|
|
|
|
license = "MIT";
|
|
|
|
maintainers = ["Alexander Foremny <alexanderforemny@googlemail.com>"];
|
2012-03-25 13:39:43 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2012-01-04 23:12:43 +01:00
|
|
|
};
|
|
|
|
}
|