Netsurf libnsfb: 0.2.1 -> 0.2.2
This commit is contained in:
@@ -1,11 +1,27 @@
|
||||
{ lib, pkgs }:
|
||||
|
||||
lib.makeScope pkgs.newScope (self: with self; {
|
||||
# ui can be: gtk2, gtk3, sixel, framebuffer. Note that console display (sixel)
|
||||
# requires a terminal that supports `sixel` capabilities, such as mlterm
|
||||
# or xterm -ti 340
|
||||
ui = "gtk3";
|
||||
uilib =
|
||||
if ui == "gtk2" ||
|
||||
ui == "gtk3" ||
|
||||
ui == "framebuffer" then ui
|
||||
else if ui == "sixel" then "framebuffer"
|
||||
else null; # Never will happen
|
||||
SDL =
|
||||
if ui == "sixel" then pkgs.SDL_sixel
|
||||
else if ui == "framebuffer" then pkgs.SDL
|
||||
else null;
|
||||
|
||||
buildsystem = callPackage ./buildsystem.nix { };
|
||||
libcss = callPackage ./libcss.nix { };
|
||||
libdom = callPackage ./libdom.nix { };
|
||||
libhubbub = callPackage ./libhubbub.nix { };
|
||||
libnsbmp = callPackage ./libnsbmp.nix { };
|
||||
libnsfb = callPackage ./libnsfb.nix { };
|
||||
libnsgif = callPackage ./libnsgif.nix { };
|
||||
libnslog = callPackage ./libnslog.nix { };
|
||||
libnspsl = callPackage ./libnspsl.nix { };
|
||||
|
||||
Reference in New Issue
Block a user