Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
393 B
Nix
Raw Permalink Normal View History

2025-05-22 17:25:48 +02:00
{
lib,
flutter329,
2025-05-22 17:25:48 +02:00
plant-it,
}:
flutter329.buildFlutterApplication {
2025-05-22 17:25:48 +02:00
pname = "plant-it-frontend";
inherit (plant-it) version src;
sourceRoot = "${plant-it.src.name}/frontend";
2025-05-22 17:25:48 +02:00
targetFlutterPlatform = "web";
pubspecLock = lib.importJSON ./pubspec.lock.json;
meta = plant-it.meta // {
description = "Frontend for Plant It";
platforms = lib.platforms.linux;
2025-05-22 17:25:48 +02:00
};
}