about summary refs log tree commit diff
path: root/users/riking/adventofcode-2020/day01/default.nix
{ depot, ... }:

with depot.third_party;

naersk.buildPackage {
  src = ./.;

  buildInputs = [ ];
  doCheck = true;
}