Compare commits

..

No commits in common. "8ed87c7d5359cb027b95da163616e1de27265325" and "0c3091632f80c5114c5076023ba8671f1e2fff26" have entirely different histories.

2 changed files with 2 additions and 18 deletions

View File

@ -26,13 +26,7 @@
pspec.name val)))
))
})]
(let [settings (widget:get_settings)]
(print :font (settings:get_default_font_family)
:size (settings:get_default_font_size))
(settings:set_enable_write_console_messages_to_stdout true)
(widget:set_settings settings))
{:webview (trace widget)
{:webview widget
:name name
:subscribe-property-changes
(fn [self cb]

View File

@ -1,20 +1,10 @@
with import <nixpkgs> {} ;
let
just = callPackage ./. {};
let just = callPackage ./. {};
in just.overrideAttrs(o: {
nativeBuildInputs = o.nativeBuildInputs ++ (with pkgs; [
socat
overmind
entr
buildInputs = o.buildInputs ++ (with pkgs; [
gobject-introspection
gtk3
webkitgtk
]);
JUST_HACKING = 1;
shellHook = with pkgs; ''
export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS;
export GIO_MODULE_DIR="${pkgs.glib-networking}/lib/gio/modules/";
'';
})