TVL depot development (mail to depot@tvl.su)
 help / color / mirror / code / Atom feed
fe2e20130c099183a7c905c34021574e46c941bc blob 3157 bytes (raw)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
 
{ depot, pkgs, ... }:

let
  inherit (pkgs) graphviz runCommandNoCC writeText;

  tvlGraph = runCommandNoCC "tvl.svg" {
    nativeBuildInputs = with pkgs; [ fontconfig freetype cairo jetbrains-mono ];
  } ''
    ${graphviz}/bin/neato -Tsvg ${./tvl.dot} > $out
  '';

  graphWidth = builtins.readFile (runCommandNoCC "graphWidth" {
    nativeBuildInputs = with pkgs; [ xmlstarlet ];
  } ''
    xmlstarlet sel -N s=http://www.w3.org/2000/svg -t -v 's:svg/@width' \
      < ${tvlGraph} \
      > $out
  '');

  homepage = writeText "index.html" ''
    <!DOCTYPE html>
    <head>
      <meta charset="utf-8">
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <meta name="description" content="The Virus Lounge">
      <link rel="stylesheet" type="text/css" href="/static/tazjin.css" media="all">
      <link rel="icon" type="image/webp" href="/static/favicon.webp">
      <title>The Virus Lounge</title>
      <style>
        .svg-container {
          margin-left: calc((${graphWidth} - 800px) * -0.5);
        }

        @media screen and (max-width: 800px) {
          .svg-container {
            margin-left: 0;
            max-width: 100%;
            overflow-x: scroll;
          }
        }
      </style>
    </head>
    <body class="light">
      <header>
        <h1><a class="blog-title" href="/">The Virus Lounge</a> </h1>
        <hr>
      </header>

      <main>
        <img alt="The Virus Lounge" src="/static/virus_lounge.webp">
      </main>

      <p>
        Welcome to <b>The Virus Lounge</b>. We're a random group of
        people who feel undersocialised in these trying times, and
        we've decided that there isn't enough spontaneous socialising
        on the internet.
      </p>
      <p>
        Anyone can join The Virus Lounge, if it is currently open. Its
        current status is shown in the topic of the <b>##tvl</b>
        channel on Freenode.
      </p>

      <div style="text-align:center;">
        <a href="https://meet.google.com/mng-biyw-xbb" target="_blank">
          <button style="color:initial;">Join The Lounge!</button>
        </a>
        <br>
        <i>(Hope you've checked that it's open!)</i>
      </div>

      <hr>
      <h2>Where did all these people come from?</h2>

      <p>
        It's pretty straightforward. Feel free to click on people, too.
      </p>
      <div class="svg-container">
        ${builtins.readFile tvlGraph}
      </div>

      <hr>
      <footer>
        <p class="footer">
          <a class="uncoloured-link" href="https://tazj.in">homepage</a>
          |
          <a class="uncoloured-link" href="https://git.tazj.in/about">code</a>
          |
          <a class="uncoloured-link" href="https://twitter.com/tazjin">twitter</a>
        </p>
        <p class="lod">ಠ_ಠ</p>
      </footer>
    </body>
  '';
in runCommandNoCC "website" { passthru = { inherit tvlGraph; }; } ''
  mkdir -p $out/static
  cp ${homepage} $out/index.html
  cp -r ${./static}/* $out/static

  # Some assets are stolen from the blog
  cp ${depot.web.homepage}/static/jetbrains-* $out/static
  cp ${depot.web.homepage}/static/tazjin.css $out/static
''
debug log:

solving fe2e201 ...
found fe2e201 in https://inbox.tvl.su/depot/20200424152400.11761-1-root@gws.fyi/
found b766090 in https://code.tvl.fyi
preparing index
index prepared:
100644 b766090c7fb0a243fd803562b8b183a3512d6c52	web/tvl/default.nix

applying [1/1] https://inbox.tvl.su/depot/20200424152400.11761-1-root@gws.fyi/
diff --git a/web/tvl/default.nix b/web/tvl/default.nix
index b766090..fe2e201 100644

Checking patch web/tvl/default.nix...
Applied patch web/tvl/default.nix cleanly.

index at:
100644 fe2e20130c099183a7c905c34021574e46c941bc	web/tvl/default.nix

Code repositories for project(s) associated with this public inbox

	https://code.tvl.fyi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).