diff options
author | sterni <sternenseemann@systemli.org> | 2022-12-28T11·56+0100 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-12-28T12·20+0000 |
commit | 6aafe2a223c00755d71cbc86bbabfe54d95611d3 (patch) | |
tree | 6840d0ae6e8b93756b0eb516bb41c00e5ee7f35b /users/sterni/exercises/aoc/2022/default.nix | |
parent | 7163d3ad37105a97fdc7afdf4ad0da7579494fab (diff) |
chore(sterni/aoc/2022): nuke Nix solutions r/5521
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
Diffstat (limited to 'users/sterni/exercises/aoc/2022/default.nix')
-rw-r--r-- | users/sterni/exercises/aoc/2022/default.nix | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/users/sterni/exercises/aoc/2022/default.nix b/users/sterni/exercises/aoc/2022/default.nix index 82d743428ab0..77b33728470d 100644 --- a/users/sterni/exercises/aoc/2022/default.nix +++ b/users/sterni/exercises/aoc/2022/default.nix @@ -13,7 +13,6 @@ depot.nix.readTree.drvTargets { packages = [ cbqn ngn-k - depot.tvix.eval ]; BQNLIBS = pkgs.fetchFromGitHub { @@ -49,27 +48,4 @@ depot.nix.readTree.drvTargets { '' 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" - ''; } |