2e6bf42a22
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, pkgconfig, libsoup, webkitgtk, gtk3, glib-networking
|
|
, gsettings-desktop-schemas, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vimb";
|
|
version = "3.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fanglingsu";
|
|
repo = "vimb";
|
|
rev = version;
|
|
sha256 = "1qg18z2gnsli9qgrqfhqfrsi6g9mcgr90w8yab28nxrq4aha6brf";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook pkgconfig ];
|
|
buildInputs = [ gtk3 libsoup webkitgtk glib-networking gsettings-desktop-schemas ];
|
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
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.
|
|
'';
|
|
homepage = https://fanglingsu.github.io/vimb/;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
maintainers = [];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|