diff options
| author | seth <[email protected]> | 2023-12-30 04:32:40 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-31 09:35:40 -0500 |
| commit | dcffd33bdad7475fe86158a044eb75ab3f023b0d (patch) | |
| tree | 6ac6d73624f6bf7da9942c2d8aceca68e37e6b15 /nix/ci.nix | |
| parent | 5848c2447840f37c605d3978b8817a93d56ca39d (diff) | |
flake: cleanup ciGate
Diffstat (limited to 'nix/ci.nix')
| -rw-r--r-- | nix/ci.nix | 18 |
1 files changed, 8 insertions, 10 deletions
@@ -2,7 +2,7 @@ perSystem = { pkgs, lib, - config, + self', ... }: { /* @@ -12,14 +12,12 @@ https://determinate.systems/posts/hydra-deployment-source-of-truth */ - packages.ciGate = pkgs.writeText "ci-gate" '' - ${ - lib.concatMapStringsSep "\n" (s: toString (builtins.attrValues s)) [ - config.checks - config.devShells - (builtins.removeAttrs config.packages ["default" "ciGate"]) - ] - } - ''; + packages.ciGate = pkgs.writeText "ci-gate" ( + lib.concatMapStringsSep "\n" (s: toString (lib.attrValues s)) [ + self'.checks + self'.devShells + (builtins.removeAttrs self'.packages ["default" "ciGate"]) + ] + ); }; } |
