treewide: fix nested lists in *buildInputs

wip/yesman
Robin Gloster 5 years ago committed by Jan Tojnar
parent a012d5eebb
commit 8a227a2341
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
  1. 2
      pkgs/development/compilers/ghc/8.6.5.nix
  2. 2
      pkgs/development/libraries/gtk/2.x.nix
  3. 3
      pkgs/development/libraries/gtk/3.x.nix

@ -73,7 +73,7 @@ let
'';
# Splicer will pull out correct variations
libDeps = platform: stdenv.lib.optional enableTerminfo [ ncurses ]
libDeps = platform: stdenv.lib.optional enableTerminfo ncurses
++ [libffi]
++ stdenv.lib.optional (!enableIntegerSimple) gmp
++ stdenv.lib.optional (platform.libc != "glibc" && !targetPlatform.isWindows) libiconv;

@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
./hooks/drop-icon-theme-cache.sh
];
nativeBuildInputs = [ setupHooks perl pkgconfig gettext gobject-introspection ];
nativeBuildInputs = setupHooks ++ [ perl pkgconfig gettext gobject-introspection ];
patches = [
./patches/2.0-immodules.cache.patch

@ -115,8 +115,7 @@ stdenv.mkDerivation rec {
pkgconfig
python3
sassc
setupHooks
] ++ optionals withGtkDoc [
] ++ setupHooks ++ optionals withGtkDoc [
docbook_xml_dtd_43
docbook_xsl
gtk-doc

Loading…
Cancel
Save