core/pkgs/by-name/im/imlib2/packages.nix

17 lines
458 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ ... }:
res: pkgs: super:
2024-05-13 21:24:10 +00:00
with pkgs; {
2024-05-02 00:46:19 +00:00
imlib2 = callPackage ./. { };
imlib2Full = imlib2.override {
# Compilation error on Darwin with librsvg. For more information see:
# https://github.com/NixOS/nixpkgs/pull/166452#issuecomment-1090725613
svgSupport = !stdenv.isDarwin;
heifSupport = !stdenv.isDarwin;
webpSupport = true;
jxlSupport = true;
psSupport = true;
};
2024-05-13 21:24:10 +00:00
imlib2-nox = imlib2.override { x11Support = false; };
2024-05-02 00:46:19 +00:00
}