2021-01-18 22:50:56 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, pkg-config, libsoup, webkitgtk, gtk3, glib-networking
|
2018-12-29 12:31:34 -08:00
|
|
|
, gsettings-desktop-schemas, wrapGAppsHook
|
2014-02-12 10:42:39 -08:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "vimb";
|
2018-11-29 01:36:14 -08:00
|
|
|
version = "3.3.0";
|
2014-02-12 10:42:39 -08:00
|
|
|
|
2018-11-29 18:36:36 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "fanglingsu";
|
|
|
|
repo = "vimb";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1qg18z2gnsli9qgrqfhqfrsi6g9mcgr90w8yab28nxrq4aha6brf";
|
2014-02-12 10:42:39 -08:00
|
|
|
};
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
nativeBuildInputs = [ wrapGAppsHook pkg-config ];
|
2019-03-05 08:40:00 -08:00
|
|
|
buildInputs = [ gtk3 libsoup webkitgtk glib-networking gsettings-desktop-schemas ];
|
2014-02-12 10:42:39 -08:00
|
|
|
|
2018-12-29 12:31:34 -08:00
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
2014-02-12 10:42:39 -08: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-03-31 18:11:51 -07:00
|
|
|
homepage = "https://fanglingsu.github.io/vimb/";
|
2021-01-15 05:21:58 -08:00
|
|
|
license = lib.licenses.gpl3;
|
2019-08-20 06:24:01 -07:00
|
|
|
maintainers = [];
|
2021-01-15 05:21:58 -08:00
|
|
|
platforms = with lib.platforms; linux;
|
2014-02-12 10:42:39 -08:00
|
|
|
};
|
|
|
|
}
|