-
Notifications
You must be signed in to change notification settings - Fork 25
Dev #281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dev #281
Changes from all commits
3efc909
36593c3
5703d4f
03788fd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,12 +3,12 @@ | |
| stdenv, | ||
| buildGoModule, | ||
| cmake, | ||
| extra-cmake-modules, | ||
| fcitx5, | ||
| fetchFromGitHub, | ||
| gettext, | ||
| go, | ||
| hicolor-icon-theme, | ||
| kdePackages, | ||
| libinput, | ||
| libx11, | ||
| pkg-config, | ||
|
|
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec { | |
|
|
||
| nativeBuildInputs = [ | ||
| cmake | ||
| extra-cmake-modules | ||
| kdePackages.extra-cmake-modules | ||
| gettext | ||
| go | ||
| hicolor-icon-theme | ||
|
|
@@ -42,12 +42,13 @@ stdenv.mkDerivation rec { | |
| fcitx5 | ||
| libinput | ||
| libx11 | ||
| (python3.withPackages (ps: | ||
| with ps; [ | ||
| (python3.withPackages ( | ||
| ps: with ps; [ | ||
| pyqt6 | ||
| dbus-python | ||
| qtpy | ||
| ])) | ||
| ] | ||
| )) | ||
|
Comment on lines
+45
to
+51
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The reformatted Python package list is unnecessarily verbose and continues to use the |
||
| qt6.qtbase | ||
| udev | ||
| ]; | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When using
kdePackages.extra-cmake-modules, it is recommended to also usekdePackages.qtbaseandkdePackages.wrapQtAppsHook(instead of the top-levelqt6attributes) to ensure that all Qt/KDE components are sourced from the same consistent package set. This prevents potential issues with mismatched Qt versions in the build environment.