1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00
nix-pills/pills/17/p-graphviz-override.txt
Misty De Méo 175f64b37d
Pill 17: fix graphviz xorg override
In the current version of nix, overriding `xorg = null;`
no longer seems to work; overriding the `withXorg` attribute
allows it to pass instead.
2023-03-30 17:16:27 -07:00

4 lines
104 B
Plaintext

pkgs = import <nixpkgs> {};
pkgs.graphviz = pkgs.graphviz.override { withXorg = false; };
build(pkgs.P)