nixpkgs/pkgs/applications/networking/browsers/luakit/default.nix

69 lines
1.9 KiB
Nix
Raw Normal View History

2019-02-24 10:47:11 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, wrapGAppsHook
, help2man, lua5, luafilesystem, luajit, sqlite
, webkitgtk, gtk3, gst_all_1, glib-networking
}:
2018-03-18 11:17:59 +00:00
let
lualibs = [luafilesystem];
getPath = lib : type : "${lib}/lib/lua/${lua5.luaversion}/?.${type};${lib}/share/lua/${lua5.luaversion}/?.${type}";
getLuaPath = lib : getPath lib "lua";
getLuaCPath = lib : getPath lib "so";
luaPath = stdenv.lib.concatStringsSep ";" (map getLuaPath lualibs);
luaCPath = stdenv.lib.concatStringsSep ";" (map getLuaCPath lualibs);
in stdenv.mkDerivation rec {
2019-02-24 10:47:11 +00:00
pname = "luakit";
2019-02-24 10:49:12 +00:00
version = "2.1";
2019-02-24 10:47:11 +00:00
2018-03-18 11:17:59 +00:00
src = fetchFromGitHub {
owner = "luakit";
repo = "luakit";
2019-02-24 10:47:11 +00:00
rev = version;
2019-02-24 10:49:12 +00:00
sha256 = "05mm76g72fs48410pbij4mw0s3nqji3r7f3mnr2fvhv02xqj05aa";
2018-03-18 11:17:59 +00:00
};
2019-02-24 10:47:11 +00:00
nativeBuildInputs = [
pkgconfig help2man wrapGAppsHook
];
2018-03-18 11:17:59 +00:00
2019-02-24 10:47:11 +00:00
buildInputs = [
webkitgtk lua5 luafilesystem luajit sqlite gtk3
2018-03-18 11:17:59 +00: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
glib-networking # TLS support
];
2018-03-18 11:17:59 +00:00
2019-02-24 10:47:11 +00:00
preBuild = ''
# build-utils/docgen/gen.lua:2: module 'lib.lousy.util' not found
# TODO: why is not this the default?
LUA_PATH=?.lua
2018-03-18 11:17:59 +00:00
'';
2019-02-24 10:47:11 +00: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 11:17:59 +00:00
2019-02-24 10:47:11 +00:00
preFixup = let
2018-03-18 11:17:59 +00:00
luaKitPath = "$out/share/luakit/lib/?/init.lua;$out/share/luakit/lib/?.lua";
in ''
2019-02-24 10:47:11 +00:00
gappsWrapperArgs+=(
--prefix XDG_CONFIG_DIRS : "$out/etc/xdg"
--set LUA_PATH '${luaKitPath};${luaPath};'
2018-03-18 11:17:59 +00:00
--set LUA_CPATH '${luaCPath};'
2019-02-24 10:47:11 +00:00
)
2018-03-18 11:17:59 +00:00
'';
meta = with stdenv.lib; {
description = "Fast, small, webkit based browser framework extensible in Lua";
2019-02-24 10:47:11 +00:00
homepage = http://luakit.org;
2018-03-18 11:17:59 +00:00
license = licenses.gpl3;
platforms = platforms.linux; # Only tested linux
};
}