mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
c789af6065
Unlike previously, we now fail loudly when a package not containing a gdk-pixbuf modules is passed.
29 lines
785 B
Nix
29 lines
785 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.services.xserver.gdk-pixbuf;
|
|
|
|
loadersCache = pkgs.gnome._gdkPixbufCacheBuilder_DO_NOT_USE {
|
|
extraLoaders = lib.unique (cfg.modulePackages);
|
|
};
|
|
in
|
|
|
|
{
|
|
options = {
|
|
services.xserver.gdk-pixbuf.modulePackages = lib.mkOption {
|
|
type = lib.types.listOf lib.types.package;
|
|
default = [ ];
|
|
description = lib.mdDoc "Packages providing GDK-Pixbuf modules, for cache generation.";
|
|
};
|
|
};
|
|
|
|
# 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 = lib.mkIf (cfg.modulePackages != []) {
|
|
environment.variables = {
|
|
GDK_PIXBUF_MODULE_FILE = "${loadersCache}";
|
|
};
|
|
};
|
|
}
|