Compare commits

...

5 Commits

4 changed files with 9 additions and 4 deletions

View File

@ -17,12 +17,13 @@ pkgs.stdenv.mkDerivation rec {
xorg.libXdmcp xorg.libXdmcp
libpulseaudio libpulseaudio
dbus.dev dbus.dev
] ++ lib.optionals full [ python3
] ++ lib.optionals (full && stdenv.isLinux) [
gnome.gdm.dev gnome.gdm.dev
glib glib
pcre2 pcre2
systemd.dev systemd.dev
] ++ lib.optionals (full && stdenv.isLinux) [
# To address pkg-config warnings for glib. # To address pkg-config warnings for glib.
util-linux util-linux
libselinux libselinux

View File

@ -13,6 +13,7 @@ pkgs.stdenv.mkDerivation rec {
buildInputs = with pkgs; [ buildInputs = with pkgs; [
ncurses ncurses
libiconv
libev libev
# Termo demo-glib.c # Termo demo-glib.c

View File

@ -14,7 +14,6 @@ let
ncurses ncurses
inkscape inkscape
#(groff.override { enableGhostscript = true; }) #(groff.override { enableGhostscript = true; })
libreoffice
imagemagick imagemagick
openssl openssl
@ -22,6 +21,9 @@ let
nss.tools nss.tools
# pdfsig # pdfsig
(poppler.override { utils = true; }) (poppler.override { utils = true; })
] ++ lib.optionals stdenv.isLinux [
# Missing on macOS as of writing.
libreoffice
]; ];
src = if local then src = if local then

View File

@ -28,8 +28,9 @@ pkgs.stdenv.mkDerivation rec {
tcl tcl
perl perl
ruby ruby
tinycc
python3 python3
] ++ lib.optionals (full && !tinycc.meta.broken) [
tinycc
] ++ lib.optionals (!full) [ ] ++ lib.optionals (!full) [
libedit libedit
]; ];