tangled
alpha
login
or
join now
willdot.net
/
tangled-fork
forked from
tangled.org/core
0
fork
atom
Monorepo for Tangled
0
fork
atom
overview
issues
pulls
pipelines
update appview builds
oppi.li
1 year ago
de92929c
c6085615
+7
-4
2 changed files
expand all
collapse all
unified
split
appview
pages
templates
repo
commit.html
flake.nix
+1
-1
appview/pages/templates/repo/commit.html
···
102
102
{{ else }}
103
103
<pre class="overflow-auto">
104
104
{{- range .TextFragments -}}
105
105
-
<div class="bg-gray-100 text-gray-500">{{ .Header }}</div>
105
105
+
<div class="bg-gray-100 text-gray-500">{{ nl2br .Header }}</div>
106
106
{{- range .Lines -}}
107
107
{{- if eq .Op.String "+" -}}
108
108
<div class="bg-green-100 text-green-700">{{ .String }}</div>
+6
-3
flake.nix
···
57
57
pname = "appview";
58
58
version = "0.1.0";
59
59
src = gitignoreSource ./.;
60
60
-
preBuild = ''
60
60
+
postUnpack = ''
61
61
+
pushd source
61
62
cp -f ${htmx-src} appview/pages/static/htmx.min.js
62
63
cp -f ${lucide-src} appview/pages/static/lucide.min.js
63
64
${pkgs.tailwindcss}/bin/tailwindcss -i input.css -o appview/pages/static/tw.css
64
64
-
'';
65
65
+
popd
66
66
+
'';
67
67
+
doCheck = false;
65
68
subPackages = [ "cmd/appview" ];
66
66
-
vendorHash = "sha256-t7lWrCyFWCI7zjUcC6XNWzCrUPSCFnFu9gTmRTsYrz0=";
69
69
+
vendorHash = "sha256-u9LwvapAwyVOIOAag0IRrk+ot6B0PaqyEnt0EeJciGQ=";
67
70
env.CGO_ENABLED = 1;
68
71
stdenv = pkgsStatic.stdenv;
69
72
};