Merge pull request #87212 from matthewbauer/dont-include-gdk-pixbuf-module-file

nixos/gdk-pixbuf.nix: don’t set GDK_PIXBUF_MODULE_FILE in cross
This commit is contained in:
Matthew Bauer 2020-05-09 14:06:48 -05:00 committed by GitHub
commit b907387ffe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ in
# If there is any package configured in modulePackages, we generate the
# loaders.cache based on that and set the environment variable
# GDK_PIXBUF_MODULE_FILE to point to it.
config = mkIf (cfg.modulePackages != [] || pkgs.stdenv.hostPlatform != pkgs.stdenv.buildPlatform) {
config = mkIf (cfg.modulePackages != []) {
environment.variables = {
GDK_PIXBUF_MODULE_FILE = "${loadersCache}";
};