mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, 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 pkg-config ];
|
|
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 = lib.licenses.gpl3;
|
|
maintainers = [];
|
|
platforms = with lib.platforms; linux;
|
|
};
|
|
}
|