tvl-depot/users/sterni/exercises/aoc/2022/default.nix
sterni 7b87b2ccbb feat(sterni/exercises/aoc/2022): add basic scaffolding
I currently plan doing BQN and Nix (where it is not too annoying,
respectively). All solutions can either be executed together in a
derivation using CBQN and Tvix (!!!) or executed individually (I'll do
one file per solution for BQN and an attribute set of solutions for Nix
in a single file).

Change-Id: I7cff2ea60d06ae0f586d07779f14f5edd8f87aae
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7489
Reviewed-by: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
2022-12-01 23:50:32 +00:00

67 lines
1.4 KiB
Nix

{ depot, pkgs, lib, ... }:
let
inherit (pkgs.buildPackages) cbqn;
# input files are not checked in
meta.ci.skip = true;
in
depot.nix.readTree.drvTargets {
shell = pkgs.mkShell {
name = "aoc-2022-shell";
packages = [
cbqn
depot.tvix.eval
];
};
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"
'';
nix = import ./nix.nix { inherit lib; };
tvixed-nix = pkgs.runCommand "tvix-aoc-2022"
{
nativeBuildInputs = [
depot.tvix.eval
];
solutions = builtins.path {
name = "nix-aoc-2022";
path = ./.;
filter = path: type:
type == "directory"
|| lib.hasSuffix "nix.nix" path
|| lib.hasSuffix "/input" path;
};
inherit meta;
}
''
tvix-eval -E "import $solutions/nix.nix { lib = import ${pkgs.path}/lib; }" \
| tee "$out"
'';
}