dupeguru: Don't override qt5 version.
Since Python's pyqt5 is using qt5.15, it should use the same version as well.
This commit is contained in:
parent
36b7e89f19
commit
56d047f0b0
|
@ -40,15 +40,15 @@ python3Packages.buildPythonApplication rec {
|
||||||
# Avoid double wrapping Python programs.
|
# Avoid double wrapping Python programs.
|
||||||
dontWrapQtApps = true;
|
dontWrapQtApps = true;
|
||||||
|
|
||||||
|
# TODO: A bug in python wrapper
|
||||||
|
# see https://github.com/NixOS/nixpkgs/pull/75054#discussion_r357656916
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
# TODO: A bug in python wrapper
|
|
||||||
# see https://github.com/NixOS/nixpkgs/pull/75054#discussion_r357656916
|
|
||||||
makeWrapperArgs="''${qtWrapperArgs[@]}"
|
makeWrapperArgs="''${qtWrapperArgs[@]}"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# Executable in $out/bin is a symlink to $out/share/dupeguru/run.py
|
||||||
|
# so wrapPythonPrograms hook does not handle it automatically.
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
# Executable in $out/bin is a symlink to $out/share/dupeguru/run.py
|
|
||||||
# so wrapPythonPrograms hook does not handle it automatically.
|
|
||||||
wrapPythonProgramsIn "$out/share/dupeguru" "$out $pythonPath"
|
wrapPythonProgramsIn "$out/share/dupeguru" "$out $pythonPath"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
|
@ -278,7 +278,7 @@ in
|
||||||
|
|
||||||
dispad = callPackage ../tools/X11/dispad { };
|
dispad = callPackage ../tools/X11/dispad { };
|
||||||
|
|
||||||
dupeguru = callPackage ../applications/misc/dupeguru { qt5 = qt514; };
|
dupeguru = callPackage ../applications/misc/dupeguru { };
|
||||||
|
|
||||||
dump1090 = callPackage ../applications/radio/dump1090 { };
|
dump1090 = callPackage ../applications/radio/dump1090 { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue