Modified overlay to force use of flutter319

This commit is contained in:
Andrew Bryant 2025-08-23 12:17:14 -04:00
parent 5087b872b7
commit 5c12d64623

View File

@ -25,7 +25,10 @@
modules = [ ./vm ]; modules = [ ./vm ];
}; };
overlays.default = final: prev: { invoiceninja-desktop = final.callPackage ./package.nix { }; }; overlays.default =
(self: super: {
invoiceninja-desktop = super.callPackage ./package.nix { flutter319 = nixpkgs.legacyPackages.x86_64-linux.flutter319; };
});
packages = forEachSystem (system: { packages = forEachSystem (system: {
invoiceninja-desktop = pkgsBySystem.${system}.invoiceninja-desktop; invoiceninja-desktop = pkgsBySystem.${system}.invoiceninja-desktop;