forked from tangled.org/core
Monorepo for Tangled

update appview builds

Changed files
+7 -4
appview
pages
templates
+1 -1
appview/pages/templates/repo/commit.html
··· 102 102 {{ else }} 103 103 <pre class="overflow-auto"> 104 104 {{- range .TextFragments -}} 105 - <div class="bg-gray-100 text-gray-500">{{ .Header }}</div> 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 - preBuild = '' 60 + postUnpack = '' 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 - ''; 65 + popd 66 + ''; 67 + doCheck = false; 65 68 subPackages = [ "cmd/appview" ]; 66 - vendorHash = "sha256-t7lWrCyFWCI7zjUcC6XNWzCrUPSCFnFu9gTmRTsYrz0="; 69 + vendorHash = "sha256-u9LwvapAwyVOIOAag0IRrk+ot6B0PaqyEnt0EeJciGQ="; 67 70 env.CGO_ENABLED = 1; 68 71 stdenv = pkgsStatic.stdenv; 69 72 };