forked from
tangled.org/core
fork
Configure Feed
Select the types of activity you want to include in your feed.
Monorepo for Tangled
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 buildGoApplication,
3 modules,
4 appview-static-files,
5 sqlite-lib,
6 src,
7}:
8buildGoApplication {
9 pname = "appview";
10 version = "0.1.0";
11 inherit src modules;
12
13 postUnpack = ''
14 pushd source
15 mkdir -p appview/pages/static
16 cp -frv ${appview-static-files}/* appview/pages/static
17 popd
18 '';
19
20 doCheck = false;
21 subPackages = ["cmd/appview"];
22
23 tags = ["libsqlite3"];
24 env.CGO_CFLAGS = "-I ${sqlite-lib}/include ";
25 env.CGO_LDFLAGS = "-L ${sqlite-lib}/lib";
26 CGO_ENABLED = 1;
27}