summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/vimprobable2
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-01-04 22:12:43 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-01-04 22:12:43 +0000
commitb1ba53e50d9f93f1114e146563d727e25e13ee9f (patch)
treeab3d5a19ae08342a31d451ffff54a554c032a1b7 /pkgs/applications/networking/browsers/vimprobable2
parentd0321537d93b896a8a893ea079b739835285d521 (diff)
downloadnixpkgs-b1ba53e50d9f93f1114e146563d727e25e13ee9f.tar
nixpkgs-b1ba53e50d9f93f1114e146563d727e25e13ee9f.tar.gz
nixpkgs-b1ba53e50d9f93f1114e146563d727e25e13ee9f.tar.bz2
nixpkgs-b1ba53e50d9f93f1114e146563d727e25e13ee9f.tar.lz
nixpkgs-b1ba53e50d9f93f1114e146563d727e25e13ee9f.tar.xz
nixpkgs-b1ba53e50d9f93f1114e146563d727e25e13ee9f.tar.zst
nixpkgs-b1ba53e50d9f93f1114e146563d727e25e13ee9f.zip
Adding vimprobable2. Patch by Alexander Forenmy.
svn path=/nixpkgs/trunk/; revision=31303
Diffstat (limited to 'pkgs/applications/networking/browsers/vimprobable2')
-rw-r--r--pkgs/applications/networking/browsers/vimprobable2/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/pkgs/applications/networking/browsers/vimprobable2/default.nix b/pkgs/applications/networking/browsers/vimprobable2/default.nix
new file mode 100644
index 00000000000..924139dc32e
--- /dev/null
+++ b/pkgs/applications/networking/browsers/vimprobable2/default.nix
@@ -0,0 +1,35 @@
+{stdenv, fetchurl, makeWrapper, perl, pkgconfig, webkit, gtk, libX11, libsoup,
+glib_networking}:
+
+stdenv.mkDerivation {
+  name = "vimprobable2-0.9.11.2";
+  src = fetchurl {
+    url = "mirror://sourceforge/vimprobable/vimprobable2_0.9.11.2.tar.bz2";
+    sha256 = "017qwhndchmpsn2g38v85rjx00fss69aa1nmgj3v85k5zskv7z65";
+  };
+  buildInputs = [ makeWrapper perl pkgconfig libX11 libsoup webkit gtk ];
+  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>"];
+  };
+}
+