plant-it-frontend: pin flutter to flutter329

emaryn c5dcac6c e863e0fe

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