mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
meld: fix icon loader
This commit is contained in:
parent
20b816cf4f
commit
f02fc10d0d
|
@ -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…
Reference in a new issue