875ef0a605
This was previously hardcoded to tazj.in, which is not going to work of course. Instead it now takes the blog config which has a new baseUrl parameter. For ease of use, the configs of my and the TVL blog have been moved into a location that is accessible in the tree for reuse. Change-Id: I94e71aaa7859db4380eb7013740a17f6b6a02620 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3777 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
42 lines
1 KiB
Nix
42 lines
1 KiB
Nix
# Creates the Atom feed for my homepage.
|
|
{ depot, lib, pkgs, entry, pageEntries, ... }:
|
|
|
|
with depot.nix.yants;
|
|
|
|
let
|
|
inherit (builtins) map readFile;
|
|
inherit (lib) max singleton;
|
|
inherit (pkgs) writeText;
|
|
inherit (depot.web) blog atom-feed;
|
|
|
|
pageEntryToEntry = defun [ entry atom-feed.entry ] (e: {
|
|
id = "tazjin:${e.class}:${toString e.date}";
|
|
updated = e.date;
|
|
published = e.date;
|
|
title = e.title;
|
|
summary = e.description;
|
|
|
|
links = singleton {
|
|
rel = "alternate";
|
|
href = e.url;
|
|
};
|
|
});
|
|
|
|
allEntries = (with depot.users.tazjin.blog; map (blog.toFeedEntry config) posts)
|
|
++ (map pageEntryToEntry pageEntries);
|
|
|
|
feed = {
|
|
id = "https://tazj.in/";
|
|
title = "tazjin's interblag";
|
|
subtitle = "my posts, projects and other interesting things";
|
|
rights = "© 2020 tazjin";
|
|
authors = [ "tazjin" ];
|
|
|
|
links = singleton {
|
|
rel = "self";
|
|
href = "https://tazjin/feed.atom";
|
|
};
|
|
|
|
entries = allEntries;
|
|
};
|
|
in writeText "feed.atom" (atom-feed.renderFeed feed)
|