updated the shell.nix files in both the programs that use them, so hopefully this is not too invidious for isolated development
8 lines
280 B
Nix
8 lines
280 B
Nix
with import <nixpkgs> { overlays = [ (import ../../overlay.nix) ]; } ;
|
|
(callPackage ./. {
|
|
}).overrideAttrs(o: {
|
|
GDK_PIXBUF_MODULE_FILE = "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache";
|
|
nativeBuildInputs = o.nativeBuildInputs ++
|
|
[ ] ;
|
|
})
|