mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 03:53:47 +00:00
meld: fix icon loader
This commit is contained in:
parent
20b816cf4f
commit
f02fc10d0d
@ -45,7 +45,6 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
gtksourceview4
|
gtksourceview4
|
||||||
gsettings-desktop-schemas
|
gsettings-desktop-schemas
|
||||||
gnome3.adwaita-icon-theme
|
gnome3.adwaita-icon-theme
|
||||||
gobject-introspection # fixes https://github.com/NixOS/nixpkgs/issues/56943 for now
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
propagatedBuildInputs = with python3.pkgs; [
|
||||||
@ -53,6 +52,10 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
pycairo
|
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 = {
|
passthru = {
|
||||||
updateScript = gnome3.updateScript {
|
updateScript = gnome3.updateScript {
|
||||||
packageName = pname;
|
packageName = pname;
|
||||||
|
Loading…
Reference in New Issue
Block a user