2019-03-05 17:40:00 +01:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, libsoup, webkitgtk, gtk3, glib-networking
|
2018-12-29 21:31:34 +01:00
|
|
|
, gsettings-desktop-schemas, wrapGAppsHook
|
2014-02-12 19:42:39 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "vimb";
|
2018-11-29 10:36:14 +01:00
|
|
|
version = "3.3.0";
|
2014-02-12 19:42:39 +01:00
|
|
|
|
2018-11-30 03:36:36 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fanglingsu";
|
|
|
|
repo = "vimb";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1qg18z2gnsli9qgrqfhqfrsi6g9mcgr90w8yab28nxrq4aha6brf";
|
2014-02-12 19:42:39 +01:00
|
|
|
};
|
|
|
|
|
2018-12-29 21:31:34 +01:00
|
|
|
nativeBuildInputs = [ wrapGAppsHook pkgconfig ];
|
2019-03-05 17:40:00 +01:00
|
|
|
buildInputs = [ gtk3 libsoup webkitgtk glib-networking gsettings-desktop-schemas ];
|
2014-02-12 19:42:39 +01:00
|
|
|
|
2018-12-29 21:31:34 +01:00
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
2014-02-12 19:42:39 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A Vim-like browser";
|
|
|
|
longDescription = ''
|
|
|
|
A fast and lightweight vim like web browser based on the webkit web
|
|
|
|
browser engine and the GTK toolkit. Vimb is modal like the great vim
|
|
|
|
editor and also easily configurable during runtime. Vimb is mostly
|
|
|
|
keyboard driven and does not detract you from your daily work.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://fanglingsu.github.io/vimb/";
|
2014-02-12 19:42:39 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2019-08-20 15:24:01 +02:00
|
|
|
maintainers = [];
|
2014-02-12 19:42:39 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
|
|
|
}
|