uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
36
pkgs/applications/networking/browsers/netsurf/default.nix
Normal file
36
pkgs/applications/networking/browsers/netsurf/default.nix
Normal file
|
|
@ -0,0 +1,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 { };
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue