2018-02-24 18:23:58 -08:00
|
|
|
{ stdenv, fetchurl, makeWrapper, glib, glib-networking, gtk2, libsoup, libX11, perl,
|
|
|
|
pkgconfig, webkit, gsettings-desktop-schemas }:
|
2012-01-04 14:12:43 -08:00
|
|
|
|
2013-03-14 08:01:53 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2014-03-29 16:59:32 -07:00
|
|
|
version = "1.4.2";
|
2013-03-14 08:01:53 -07:00
|
|
|
name = "vimprobable2-${version}";
|
2012-01-04 14:12:43 -08:00
|
|
|
src = fetchurl {
|
2013-03-14 08:01:53 -07:00
|
|
|
url = "mirror://sourceforge/vimprobable/vimprobable2_${version}.tar.bz2";
|
2014-03-29 16:59:32 -07:00
|
|
|
sha256 = "13jdximksh9r3cgd2f8vms0pbsn3x0gxvyqdqiw16xp5fmdx5kzr";
|
2012-01-04 14:12:43 -08:00
|
|
|
};
|
2013-02-25 11:56:11 -08:00
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-24 18:23:58 -08:00
|
|
|
buildInputs = [ makeWrapper gtk2 libsoup libX11 perl webkit gsettings-desktop-schemas ];
|
2013-02-25 11:56:11 -08:00
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-20 14:34:06 -08:00
|
|
|
|
|
|
|
installFlags = "PREFIX=/ DESTDIR=$(out)";
|
2014-04-05 06:51:42 -07:00
|
|
|
|
|
|
|
preFixup = ''
|
2013-03-14 08:01:53 -07:00
|
|
|
wrapProgram "$out/bin/vimprobable2" \
|
2018-02-24 18:23:58 -08:00
|
|
|
--prefix GIO_EXTRA_MODULES : "${glib-networking.out}/lib/gio/modules" \
|
2014-04-05 06:51:42 -07:00
|
|
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
|
2012-01-04 14:12:43 -08:00
|
|
|
'';
|
|
|
|
|
|
|
|
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
|
2016-02-20 14:34:06 -08:00
|
|
|
being completely featureless.
|
2012-01-04 14:12:43 -08:00
|
|
|
'';
|
2017-11-10 13:13:27 -08:00
|
|
|
homepage = https://sourceforge.net/apps/trac/vimprobable;
|
2012-04-04 14:30:49 -07:00
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.aforemny ];
|
2012-03-25 04:39:43 -07:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
2012-01-04 14:12:43 -08:00
|
|
|
};
|
|
|
|
}
|