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
commit a1ea4bdde8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 ]})
'';