2012-04-04 23:30:49 +02:00
|
|
|
{ stdenv, fetchurl, makeWrapper, glib_networking, gtk, libsoup, libX11, perl,
|
|
|
|
pkgconfig, webkit }:
|
2012-01-04 23:12:43 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-04-04 23:30:49 +02:00
|
|
|
name = "vimprobable2-1.0.0";
|
2012-01-04 23:12:43 +01:00
|
|
|
src = fetchurl {
|
2012-04-04 23:30:49 +02:00
|
|
|
url = "mirror://sourceforge/vimprobable/vimprobable2_1.0.0.tar.bz2";
|
|
|
|
sha256 = "1jlx8ssgk42vg1d70n0aa86lr5zixdkkagmcxjc4c7pjvh8vq3gn";
|
2012-01-04 23:12:43 +01:00
|
|
|
};
|
2012-04-04 23:30:49 +02:00
|
|
|
buildInputs = [ makeWrapper gtk libsoup libX11 perl pkgconfig webkit ];
|
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";
|
2012-04-04 23:30:49 +02:00
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.aforemny ];
|
2012-03-25 13:39:43 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2012-01-04 23:12:43 +01:00
|
|
|
};
|
|
|
|
}
|