about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/browsers/netsurf/default.nix
blob: 409ab80ce3acc4f513f9bc438efb560985d7bfa6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ 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;

  browser = callPackage ./browser.nix { };

  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 { };
  libnsutils     = callPackage ./libnsutils.nix { };
  libparserutils = callPackage ./libparserutils.nix { };
  libsvgtiny     = callPackage ./libsvgtiny.nix { };
  libutf8proc    = callPackage ./libutf8proc.nix { };
  libwapcaplet   = callPackage ./libwapcaplet.nix { };
  nsgenbind      = callPackage ./nsgenbind.nix { };
})