about summary refs log tree commit diff
path: root/users/wpcarro/website/blog/default.nix
blob: d87b714b6fe131ef109394a4c4bdd51fb9a6cee0 (plain) (blame)
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
{ depot, lib, pkgs, ... }:

with depot.nix.yants;

let
  inherit (builtins) hasAttr filter readFile;
  inherit (depot.web.blog) post includePost renderPost;
  inherit (depot.users.wpcarro.website) domain renderTemplate withBrand;
  inherit (lib.lists) sort;

  config = {
    name = "bill and his blog";
    baseUrl = "https://${domain}/blog";
    footer = "";
  };

  posts = sort (x: y: x.date > y.date)
    (filter includePost (list post (import ./posts.nix)));

  rendered = pkgs.runCommandNoCC "blog-posts" { } ''
    mkdir -p $out

    ${lib.concatStringsSep "\n" (map (post:
      "cp ${renderPost config post} $out/${post.key}.html"
    ) posts)}
  '';

  formatDate = date: readFile (pkgs.runCommandNoCC "date" { } ''
    date --date='@${toString date}' '+%B %e, %Y' > $out
  '');

  postsHtml = renderTemplate ./fragments/posts.html {
    postsHtml = lib.concatStringsSep "\n" (map toPostHtml posts);
  };

  toPostHtml = post: readFile (renderTemplate ./fragments/post.html {
    postUrl = "${config.baseUrl}/posts/${post.key}.html";
    postTitle = post.title;
    postDate = formatDate post.date;
  });
in
pkgs.runCommandNoCC "blog" { } ''
  mkdir -p $out
  cp ${withBrand (readFile postsHtml)} $out/index.html
  cp -r ${rendered} $out/posts
''