alpha
Login
or
Join now
alice.pds.demo.boltless.dev
/
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.
This repository has no description
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
2
Pulls
1
Pipelines
update appview builds
author
Akshay
date
1 year ago
(Feb 19, 2025, 8:18 AM UTC)
commit
ae5939c4
ae5939c4746029c4d67b84458e9b6854b2389469
parent
f124604f
f124604f62f438704888e3f8f2a5bdef2b843a2d
+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
View file
Reviewed
···
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
View file
Reviewed
···
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
};