tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
plant-it-frontend: pin flutter to flutter329
emaryn
7 months ago
c5dcac6c
e863e0fe
+5
-3
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
pl
plant-it-frontend
package.nix
+5
-3
pkgs/by-name/pl/plant-it-frontend/package.nix
···
1
1
{
2
2
lib,
3
3
-
flutter326,
3
3
+
flutter329,
4
4
plant-it,
5
5
}:
6
6
7
7
-
flutter326.buildFlutterApplication {
7
7
+
flutter329.buildFlutterApplication {
8
8
pname = "plant-it-frontend";
9
9
inherit (plant-it) version src;
10
10
-
sourceRoot = "source/frontend";
10
10
+
11
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
19
+
platforms = lib.platforms.linux;
18
20
};
19
21
}