Joel Höner c570df851d uefitoolPackages.new-engine: A62 -> A71
This commit upgrades uefiToolPackages.new-engine to the latest version
as of writing. Version A68 is now using Qt6 and no longer comes with
a custom build script, so the build logic compared to the old-engine
variant has become sufficiently divergent that I decided that it would
be easier to split them into two entirely different derivations.

Additionally, I:

- added myself as a maintainer
- added a patch that allows the new-engine variant to build on Darwin
- correctly set `mainProgram` in the old-engine variant
2025-05-02 17:55:25 +02:00

6 lines
154 B
Nix

{ libsForQt5, qt6Packages }:
{
new-engine = qt6Packages.callPackage ./new-engine.nix { };
old-engine = libsForQt5.callPackage ./old-engine.nix { };
}