about summary refs log tree commit diff
path: root/users/riking/adventofcode-2020/day01/default.nix
diff options
context:
space:
mode:
authorKane York <kanepyork@gmail.com>2020-12-02T07·10-0800
committerkanepyork <rikingcoding@gmail.com>2020-12-02T07·20+0000
commit50b32531eee1b1c4bca427af453fbdf474746c3e (patch)
treeb8b03a979f067cc485b23477dcf1485450c35474 /users/riking/adventofcode-2020/day01/default.nix
parent8ae4854de8906db7f898fe138204642146febadc (diff)
feat(u/riking/aoc/day01): add day01 solution r/1978
Tests with the puzzle's sample inputs are included.

Change-Id: I32cd59b9e3894bde3d67ebdc3a977961b17bdb49
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2223
Reviewed-by: kanepyork <rikingcoding@gmail.com>
Tested-by: BuildkiteCI
Diffstat (limited to 'users/riking/adventofcode-2020/day01/default.nix')
-rw-r--r--users/riking/adventofcode-2020/day01/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/users/riking/adventofcode-2020/day01/default.nix b/users/riking/adventofcode-2020/day01/default.nix
new file mode 100644
index 0000000000..0648a05af6
--- /dev/null
+++ b/users/riking/adventofcode-2020/day01/default.nix
@@ -0,0 +1,10 @@
+{ depot, ... }:
+
+with depot.third_party;
+
+naersk.buildPackage {
+  src = ./.;
+
+  buildInputs = [];
+  doCheck = true;
+}