Added dwb, a lightweight webbrowser written in C based on webkit and gtk.

This commit is contained in:
Pascal Wittmann 2013-10-02 15:13:40 +02:00
parent fca11ef500
commit 46fd82a793
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ stdenv, fetchgit, pkgconfig, makeWrapper, libsoup, webkit, gtk3, gnutls, json_c,
m4, glib_networking, gsettings_desktop_schemas }:
stdenv.mkDerivation {
name = "dwb-0.1";
src = fetchgit {
url = "https://bitbucket.org/portix/dwb.git";
rev = "4a4c3adb8fbc680a0a2b8c9d3d3a4105c07c2514";
sha256 = "93e8f2c82609447d54a3c139c153cc66d37d3c6aa8922cd09717caa95fd8b1d5";
};
buildInputs = [ pkgconfig makeWrapper libsoup webkit gtk3 gnutls json_c m4 ];
# There are Xlib and gtk warnings therefore I have set Wno-error
preBuild=''
makeFlagsArray=(CPPFLAGS="-Wno-error" GTK=3 PREFIX=$out);
'';
postInstall=''
wrapProgram "$out/bin/dwb" \
--prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \
--prefix XDG_DATA_DIRS : "${gsettings_desktop_schemas}/share:$out/share"
'';
meta = {
homepage = http://portix.bitbucket.org/dwb/;
description = "A lightweight web browser based on the webkit web browser engine and the gtk toolkit";
platforms = with stdenv.lib.platforms; all;
maintainers = with stdenv.lib.maintainers; [pSub];
license = "GPL";
};
}

View file

@ -7462,6 +7462,8 @@ let
dvswitch = callPackage ../applications/video/dvswitch { };
dwb = callPackage ../applications/networking/browsers/dwb { };
dwm = callPackage ../applications/window-managers/dwm {
patches = config.dwm.patches or [];
};