aocf_cli 0.1.21

CLI helper tool for Advent of Code, with a workflow similar to Git
Documentation
1
2
3
4
5
6
7
8
9
10
11
{ pkgs ? import <nixpkgs> {} }:

let
  aocf_cli = pkgs.callPackage ./aocf_cli.nix {};
in
pkgs.dockerTools.buildImage {
  name = "aocf";
  config = {
    Cmd = [ "${aocf_cli}/bin/aocf" ];
  };
}