35 lines
1.3 KiB
Nix
35 lines
1.3 KiB
Nix
{ stdenv, fetchgit, pkgconfig, makeWrapper, libsoup, webkitgtk24x-gtk2, gtk2, gnutls
|
|
, json_c, m4, glib_networking, gsettings_desktop_schemas, dconf }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "dwb-2016-03-21";
|
|
|
|
src = fetchgit {
|
|
url = "https://bitbucket.org/portix/dwb";
|
|
rev = "7fb82bc1db36a5d1d2436088c9b58054d2c51f96";
|
|
sha256 = "1wg7pslcx7z4fw595a3nbnygxy2bwfj0h377i48mxhddvl3wzzbq";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig makeWrapper gsettings_desktop_schemas libsoup
|
|
webkitgtk24x-gtk2 gtk2 gnutls json_c m4 ];
|
|
|
|
# There are Xlib and gtk warnings therefore I have set Wno-error
|
|
makeFlags = ''PREFIX=$(out) GTK=2 CPPFLAGS="-Wno-error"'';
|
|
|
|
preFixup=''
|
|
wrapProgram "$out/bin/dwb" \
|
|
--prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules:${stdenv.lib.getLib dconf}/lib/gio/modules" \
|
|
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$out/share"
|
|
wrapProgram "$out/bin/dwbem" \
|
|
--prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://portix.bitbucket.org/dwb/;
|
|
description = "A lightweight web browser based on the webkit web browser engine and the gtk toolkit";
|
|
platforms = platforms.mesaPlatforms;
|
|
maintainers = with maintainers; [ pSub ];
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|