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

gnomecast: fix missing pixbuf module
wip/yesman
Jan Tojnar 3 years ago committed by GitHub
commit a1ea4bdde8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      pkgs/applications/video/gnomecast/default.nix

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

Loading…
Cancel
Save