plant-it-frontend: pin flutter to flutter329

emaryn c5dcac6c e863e0fe

+5 -3
+5 -3
pkgs/by-name/pl/plant-it-frontend/package.nix
··· 1 { 2 lib, 3 - flutter326, 4 plant-it, 5 }: 6 7 - flutter326.buildFlutterApplication { 8 pname = "plant-it-frontend"; 9 inherit (plant-it) version src; 10 - sourceRoot = "source/frontend"; 11 12 targetFlutterPlatform = "web"; 13 ··· 15 16 meta = plant-it.meta // { 17 description = "Frontend for Plant It"; 18 }; 19 }
··· 1 { 2 lib, 3 + flutter329, 4 plant-it, 5 }: 6 7 + flutter329.buildFlutterApplication { 8 pname = "plant-it-frontend"; 9 inherit (plant-it) version src; 10 + 11 + sourceRoot = "${plant-it.src.name}/frontend"; 12 13 targetFlutterPlatform = "web"; 14 ··· 16 17 meta = plant-it.meta // { 18 description = "Frontend for Plant It"; 19 + platforms = lib.platforms.linux; 20 }; 21 }