meld: fix icon loader

wip/yesman
Jan Tojnar 3 years ago
parent 20b816cf4f
commit f02fc10d0d
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
  1. 5
      pkgs/applications/version-management/meld/default.nix

@ -45,7 +45,6 @@ python3.pkgs.buildPythonApplication rec {
gtksourceview4
gsettings-desktop-schemas
gnome3.adwaita-icon-theme
gobject-introspection # fixes https://github.com/NixOS/nixpkgs/issues/56943 for now
];
propagatedBuildInputs = with python3.pkgs; [
@ -53,6 +52,10 @@ python3.pkgs.buildPythonApplication rec {
pycairo
];
# gobject-introspection and some other similar setup hooks do not currently work with strictDeps.
# https://github.com/NixOS/nixpkgs/issues/56943
strictDeps = false;
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;

Loading…
Cancel
Save