meld: Fix build on Darwin
Meld’s post install script requires gtk-update-icon-cache program on PATH. Because Meld is a Python app, it uses strictDeps so we need to explicitly add the program to nativeBuildInputs. For some reason, Linux version has the program available, though, which hides the missing dependency. Perhaps it is propagated by something but I do not know how to determine it.
This commit is contained in:
parent
7e359f1ef1
commit
b2ff709179
1 changed files with 1 additions and 0 deletions
|
@ -37,6 +37,7 @@ python3.pkgs.buildPythonApplication rec {
|
|||
desktop-file-utils
|
||||
gobject-introspection
|
||||
wrapGAppsHook
|
||||
gtk3 # for gtk-update-icon-cache
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
|
|
Loading…
Reference in a new issue