alpha
Login
or
Join now
4uffin.bsky.social
/
core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
My own copy of Tangled :)
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
use preBuild instead
author
Akshay
date
1 year ago
(Feb 17, 2025, 1:46 PM UTC)
commit
8a6e5cdc
8a6e5cdc3fb6789d328bab9cc7d40d0b53ca0b86
parent
baad9919
baad9919ae470cc8503fb42c2a18e6de5bfd5aa4
+2
-4
2 changed files
Expand all
Collapse all
Unified
Split
appview
pages
pages.go
flake.nix
+1
-3
appview/pages/pages.go
Reviewed
···
64
64
return pairs, nil
65
65
},
66
66
"append": func(s []string, values ...string) []string {
67
67
-
for _, v := range values {
68
68
-
s = append(s, v)
69
69
-
}
67
67
+
s = append(s, values...)
70
68
return s
71
69
},
72
70
"timeFmt": humanize.Time,
+1
-1
flake.nix
Reviewed
···
57
57
pname = "appview";
58
58
version = "0.1.0";
59
59
src = gitignoreSource ./.;
60
60
-
postConfigureHook = ''
60
60
+
preBuild = ''
61
61
cp -f ${htmx-src} appview/pages/static/htmx.min.js
62
62
cp -f ${lucide-src} appview/pages/static/lucide.min.js
63
63
${pkgs.tailwindcss}/bin/tailwindcss -i input.css -o appview/pages/static/tw.css