2019-12-09 12:44:21 +01:00
|
|
|
# Solutions for Advent of Code 2019, written in Emacs Lisp.
|
|
|
|
#
|
|
|
|
# For each day a new file is created as "solution-day$n.el".
|
2020-02-21 13:47:29 +01:00
|
|
|
{ depot, ... }:
|
2019-12-09 12:44:21 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
inherit (builtins) attrNames filter head listToAttrs match readDir;
|
|
|
|
dir = readDir ./.;
|
|
|
|
matchSolution = match "solution-(.*)\.el";
|
|
|
|
isSolution = f: (matchSolution f) != null;
|
|
|
|
getDay = f: head (matchSolution f);
|
|
|
|
|
|
|
|
solutionFiles = filter (e: dir."${e}" == "regular" && isSolution e) (attrNames dir);
|
|
|
|
solutions = map
|
|
|
|
(f:
|
|
|
|
let day = getDay f; in {
|
|
|
|
name = day;
|
2020-12-01 13:16:56 +01:00
|
|
|
value = depot.nix.writeElispBin {
|
2019-12-09 13:27:07 +01:00
|
|
|
name = "aoc2019";
|
2019-12-09 12:44:21 +01:00
|
|
|
deps = p: with p; [ dash s ht ];
|
|
|
|
src = ./. + ("/" + f);
|
|
|
|
};
|
|
|
|
})
|
|
|
|
solutionFiles;
|
|
|
|
in
|
|
|
|
listToAttrs solutions
|