Merge pull request #112325 from andresilva/fix-gnomecast-librsvg

gnomecast: fix missing pixbuf module
This commit is contained in:
Jan Tojnar
2021-02-12 18:52:10 +01:00
committed by GitHub

View File

@@ -16,6 +16,10 @@ buildPythonApplication rec {
gtk3 gobject-introspection
];
# NOTE: gdk-pixbuf setup hook does not run with strictDeps
# https://nixos.org/manual/nixpkgs/stable/#ssec-gnome-hooks-gobject-introspection
strictDeps = false;
preFixup = ''
gappsWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ ffmpeg_3 ]})
'';