luakit: add HTTPS support (#52865)

* luakit: add HTTPS support

* Update pkgs/applications/networking/browsers/luakit/default.nix

Co-Authored-By: emmanuelrosa <emmanuelrosa@users.noreply.github.com>
This commit is contained in:
Emmanuel Rosa 2018-12-30 21:20:55 +07:00 committed by worldofpeace
parent 5e951c93aa
commit 421dd51ffd

View File

@ -1,6 +1,6 @@
{stdenv, fetchFromGitHub, pkgconfig, wrapGAppsHook, makeWrapper
,help2man, lua5, luafilesystem, luajit, sqlite
,webkitgtk, gtk3, gst_all_1}:
,webkitgtk, gtk3, gst_all_1, glib-networking}:
let
lualibs = [luafilesystem];
@ -27,7 +27,8 @@ in stdenv.mkDerivation rec {
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
];
postPatch =
#Kind of ugly seds here. There must be a better solution.