Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 21 lines 393 B view raw
1{ 2 lib, 3 flutter329, 4 plant-it, 5}: 6 7flutter329.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 15 pubspecLock = lib.importJSON ./pubspec.lock.json; 16 17 meta = plant-it.meta // { 18 description = "Frontend for Plant It"; 19 platforms = lib.platforms.linux; 20 }; 21}