tvl-depot/users/sterni/exercises/aoc/2022/default.nix
sterni 6aafe2a223 chore(sterni/aoc/2022): nuke Nix solutions
Didn't end up happening due to a lack of motivation. Will try to finish
the BQN AoC still, though.

Change-Id: Ib296aec9f3cfeef57c79a9ba09fc664c1a19dcff
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7661
Autosubmit: sterni <sternenseemann@systemli.org>
Reviewed-by: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
2022-12-28 12:20:41 +00:00

51 lines
1.1 KiB
Nix

{ depot, pkgs, lib, ... }:
let
inherit (pkgs.buildPackages) cbqn ngn-k;
# input files are not checked in
meta.ci.skip = true;
in
depot.nix.readTree.drvTargets {
shell = pkgs.mkShell {
name = "aoc-2022-shell";
packages = [
cbqn
ngn-k
];
BQNLIBS = pkgs.fetchFromGitHub {
owner = "mlochbaum";
repo = "bqn-libs";
rev = "d56d8ea0b8c294fac7274678d9ab112553a03f42";
sha256 = "1c1bkqj62v8m13jgaa32ridy0fk5iqysq5b2qwxbqxhky5zwnk9h";
};
};
bqn = pkgs.runCommand "bqn-aoc-2022"
{
nativeBuildInputs = [
cbqn
];
aoc = builtins.path {
name = "bqn-aoc-2022";
path = ./../.;
# Need lib.bqn from ../ and all inputs as well as bqn files from ./*
filter = path: type:
lib.hasSuffix ".bqn" path || (
lib.hasPrefix (toString ./.) path
&& (
type == "directory"
|| lib.hasSuffix "/input" path
)
);
};
inherit meta;
}
''
find "$aoc/2022" -name '*.bqn' -exec BQN {} \; | tee "$out"
'';
}