nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

wrapGAppsHook: add gtk3 to depsTargetTargetPropagated

for typelibs and girs

Artturin 2c471e64 21686116

+4 -1
+4 -1
pkgs/build-support/setup-hooks/wrap-gapps-hook/default.nix
··· 25 25 ]; 26 26 27 27 # depsTargetTargetPropagated will essentially be buildInputs when wrapGAppsHook is placed into nativeBuildInputs 28 - # the librsvg above should be removed but kept to not break anything that implicitly depended on its binaries 28 + # the librsvg and gtk3 above should be removed but kept to not break anything that implicitly depended on its binaries 29 29 depsTargetTargetPropagated = assert (lib.assertMsg (!targetPackages ? raw) "wrapGAppsHook must be in nativeBuildInputs"); lib.optionals isGraphical [ 30 30 # librsvg provides a module for gdk-pixbuf to allow rendering 31 31 # SVG icons. Most icon themes are SVG-based and so are some 32 32 # graphics in GTK (e.g. cross for closing window in window title bar) 33 33 # so it is pretty much required for applications using GTK. 34 34 librsvg 35 + 36 + # TODO: remove this, packages should depend on GTK explicitly. 37 + gtk3 35 38 ] ++ lib.optionals (!stdenv.isDarwin) [ 36 39 # It is highly probable that a program will use GSettings, 37 40 # at minimum through GTK file chooser dialogue.