2019-02-24 11:47:11 +01:00
|
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, wrapGAppsHook
|
2019-06-13 13:01:10 +02:00
|
|
|
|
, help2man, luafilesystem, luajit, sqlite
|
2019-02-24 11:47:11 +01:00
|
|
|
|
, webkitgtk, gtk3, gst_all_1, glib-networking
|
|
|
|
|
}:
|
2018-03-18 12:17:59 +01:00
|
|
|
|
|
2019-06-13 13:01:10 +02:00
|
|
|
|
stdenv.mkDerivation rec {
|
2019-02-24 11:47:11 +01:00
|
|
|
|
pname = "luakit";
|
2020-09-22 02:24:07 +02:00
|
|
|
|
version = "2.2";
|
2019-02-24 11:47:11 +01:00
|
|
|
|
|
2018-03-18 12:17:59 +01:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "luakit";
|
|
|
|
|
repo = "luakit";
|
2019-02-24 11:47:11 +01:00
|
|
|
|
rev = version;
|
2020-09-22 02:24:07 +02:00
|
|
|
|
sha256 = "sha256-rpHW5VyntmmtekdNcZMIw8Xdv4cfiqJaaHj4ZFFGjYc=";
|
2018-03-18 12:17:59 +01:00
|
|
|
|
};
|
|
|
|
|
|
2019-02-24 11:47:11 +01:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
pkgconfig help2man wrapGAppsHook
|
|
|
|
|
];
|
2018-03-18 12:17:59 +01:00
|
|
|
|
|
2019-02-24 11:47:11 +01:00
|
|
|
|
buildInputs = [
|
2019-06-13 13:01:10 +02:00
|
|
|
|
webkitgtk luafilesystem luajit sqlite gtk3
|
2018-03-18 12:17:59 +01:00
|
|
|
|
gst_all_1.gstreamer gst_all_1.gst-plugins-base
|
|
|
|
|
gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad gst_all_1.gst-plugins-ugly
|
|
|
|
|
gst_all_1.gst-libav
|
2018-12-30 15:20:55 +01:00
|
|
|
|
glib-networking # TLS support
|
|
|
|
|
];
|
2018-03-18 12:17:59 +01:00
|
|
|
|
|
2019-02-24 11:47:11 +01:00
|
|
|
|
preBuild = ''
|
|
|
|
|
# build-utils/docgen/gen.lua:2: module 'lib.lousy.util' not found
|
2019-06-13 13:01:10 +02:00
|
|
|
|
# TODO: why is not this the default? The test runner adds
|
|
|
|
|
# ';./lib/?.lua;./lib/?/init.lua' to package.path, but the build-utils
|
|
|
|
|
# scripts don't add an equivalent
|
2019-08-21 15:09:15 +02:00
|
|
|
|
export LUA_PATH="$LUA_PATH;./?.lua;./?/init.lua"
|
2018-03-18 12:17:59 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2019-02-24 11:47:11 +01:00
|
|
|
|
makeFlags = [
|
|
|
|
|
"DEVELOPMENT_PATHS=0"
|
|
|
|
|
"USE_LUAJIT=1"
|
|
|
|
|
"INSTALLDIR=${placeholder "out"}"
|
|
|
|
|
"PREFIX=${placeholder "out"}"
|
|
|
|
|
"USE_GTK3=1"
|
|
|
|
|
"XDGPREFIX=${placeholder "out"}/etc/xdg"
|
|
|
|
|
];
|
2018-03-18 12:17:59 +01:00
|
|
|
|
|
2019-02-24 11:47:11 +01:00
|
|
|
|
preFixup = let
|
2018-03-18 12:17:59 +01:00
|
|
|
|
luaKitPath = "$out/share/luakit/lib/?/init.lua;$out/share/luakit/lib/?.lua";
|
|
|
|
|
in ''
|
2019-02-24 11:47:11 +01:00
|
|
|
|
gappsWrapperArgs+=(
|
|
|
|
|
--prefix XDG_CONFIG_DIRS : "$out/etc/xdg"
|
2019-08-21 15:09:15 +02:00
|
|
|
|
--prefix LUA_PATH ';' "${luaKitPath};$LUA_PATH"
|
|
|
|
|
--prefix LUA_CPATH ';' "$LUA_CPATH"
|
2019-02-24 11:47:11 +01:00
|
|
|
|
)
|
2018-03-18 12:17:59 +01:00
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-09-22 02:24:07 +02:00
|
|
|
|
description = "Fast, small, webkit-based browser framework extensible in Lua";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
Luakit is a highly configurable browser framework based on the WebKit web
|
|
|
|
|
content engine and the GTK+ toolkit. It is very fast, extensible with Lua,
|
|
|
|
|
and licensed under the GNU GPLv3 license. It is primarily targeted at
|
|
|
|
|
power users, developers and anyone who wants to have fine-grained control
|
|
|
|
|
over their web browser’s behaviour and interface.
|
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
|
homepage = "https://luakit.github.io/";
|
2020-09-22 02:24:07 +02:00
|
|
|
|
license = licenses.gpl3Only;
|
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
2018-03-18 12:17:59 +01:00
|
|
|
|
};
|
|
|
|
|
}
|