2019-10-06 05:58:48 +00:00
|
|
|
{ lib, stdenv, fetchurl
|
2017-04-02 17:50:28 +00:00
|
|
|
, pkgconfig, wrapGAppsHook
|
2018-02-25 02:23:58 +00:00
|
|
|
, glib, glib-networking, gsettings-desktop-schemas, gtk, libsoup, webkitgtk
|
2019-10-06 05:58:48 +00:00
|
|
|
, xorg, dmenu, findutils, gnused, coreutils
|
2017-04-02 17:50:28 +00:00
|
|
|
, patches ? null
|
|
|
|
}:
|
2011-08-11 16:33:41 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "surf";
|
2017-04-02 17:50:28 +00:00
|
|
|
version = "2.0";
|
2011-08-11 16:33:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-11-07 22:38:38 +00:00
|
|
|
url = "https://dl.suckless.org/surf/surf-${version}.tar.gz";
|
2017-04-02 17:50:28 +00:00
|
|
|
sha256 = "07cmajyafljigy10d21kkyvv5jf3hxkx06pz3rwwk3y3c9x4rvps";
|
2011-08-11 16:33:41 +00:00
|
|
|
};
|
|
|
|
|
2017-04-02 17:50:28 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
2018-02-25 02:23:58 +00:00
|
|
|
buildInputs = [ glib glib-networking gsettings-desktop-schemas gtk libsoup webkitgtk ];
|
2011-08-11 16:33:41 +00:00
|
|
|
|
|
|
|
inherit patches;
|
|
|
|
|
2018-12-21 21:21:04 +00:00
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
2014-04-05 13:51:42 +00:00
|
|
|
|
2019-10-06 05:58:48 +00:00
|
|
|
# Add run-time dependencies to PATH. Append them to PATH so the user can
|
|
|
|
# override the dependencies with their own PATH.
|
|
|
|
preFixup = let
|
|
|
|
depsPath = lib.makeBinPath [ xorg.xprop dmenu findutils gnused coreutils ];
|
|
|
|
in ''
|
|
|
|
gappsWrapperArgs+=(
|
|
|
|
--suffix PATH : ${depsPath}
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
2017-04-02 17:50:28 +00:00
|
|
|
meta = with stdenv.lib; {
|
2019-09-03 22:49:40 +00:00
|
|
|
description = "A simple web browser based on WebKit/GTK";
|
2013-10-06 09:49:53 +00:00
|
|
|
longDescription = ''
|
2019-09-03 22:49:40 +00:00
|
|
|
Surf is a simple web browser based on WebKit/GTK. It is able to display
|
2013-10-06 09:49:53 +00:00
|
|
|
websites and follow links. It supports the XEmbed protocol which makes it
|
|
|
|
possible to embed it in another application. Furthermore, one can point
|
|
|
|
surf to another URI by setting its XProperties.
|
2017-04-02 17:50:28 +00:00
|
|
|
'';
|
2017-11-07 22:38:38 +00:00
|
|
|
homepage = https://surf.suckless.org;
|
2017-04-02 17:50:28 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = webkitgtk.meta.platforms;
|
|
|
|
maintainers = with maintainers; [ joachifm ];
|
2011-08-11 16:33:41 +00:00
|
|
|
};
|
|
|
|
}
|