aocf 0.1.21

A crate and CLI helper tool for Advent of Code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
with import <nixpkgs> {};

stdenv.mkDerivation {
    name = "aocf";

    buildInputs = [
      rustc
      cargo
      pkgconfig
      openssl
      sqlite
    ];
}