Skip to content
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

arduino: use gtk3 #107530

Merged
merged 1 commit into from Dec 25, 2020
Merged

arduino: use gtk3 #107530

merged 1 commit into from Dec 25, 2020

Conversation

raboof
Copy link
Member

@raboof raboof commented Dec 24, 2020

Motivation for this change

Tested both with a regular arduino patch and with an esp32 module

Things done
  • Tested using sandboxing (nix.useSandbox on NixOS, or option sandbox in nix.conf on non-NixOS linux)
  • Built on platform(s)
    • NixOS
    • macOS
    • other Linux distributions
  • Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
  • Tested compilation of all pkgs that depend on this change using nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
  • Tested execution of all binary files (usually in ./result/bin/)
  • Determined the impact on package closure size (by running nix path-info -S before and after)
  • Ensured that relevant documentation is up to date
  • Fits CONTRIBUTING.md.

Copy link
Contributor

@drewrisinger drewrisinger left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor points in the diff should be addressed. No testing/build done.

@@ -11,7 +11,8 @@
, ncurses
, readline
, withGui ? false
, gtk2 ? null
, gtk3 ? null
, wrapGAppsHook ? null
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this null by default? It should be in the standard nixpkgs set.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I followed the approach taken for the gtk3 dependency, but I'm OK with removing the default value as well

Comment on lines 33 to 34
assert withGui -> gtk3 != null;
assert withGui -> wrapGAppsHook != null;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
assert withGui -> gtk3 != null;
assert withGui -> wrapGAppsHook != null;
assert withGui -> gtk3 != null && wrapGAppsHook != null;

A one-liner is cleaner & easier to understand

@SuperSandro2000
Copy link
Member

Result of nixpkgs-review pr 107530 run on x86_64-linux 1

4 packages built:
  • arduino
  • arduino-core
  • ino
  • teensyduino

1 similar comment
@doronbehar
Copy link
Contributor

Result of nixpkgs-review pr 107530 run on x86_64-linux 1

4 packages built:
  • arduino
  • arduino-core
  • ino
  • teensyduino

@doronbehar
Copy link
Contributor

GUI launches and seems functional.

@doronbehar doronbehar merged commit 7ea55a0 into NixOS:master Dec 25, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants