From 08740f5f557adf9368fc8388485965935cd241e2 Mon Sep 17 00:00:00 2001 From: Bryton Hall Date: Sat, 8 Jul 2023 00:06:06 -0400 Subject: [PATCH] remove evalnix package from devShell I _think_ this is redundant with the flake checks (and if not, maybe it should be); either way, I'm gonna remove it now for simplicity but can always add it back if it turns out to be irreplaceable. --- .github/workflows/ci.yml | 3 --- flake.nix | 6 ------ 2 files changed, 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5be2cf..f8869e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,9 +22,6 @@ jobs: - name: check flake run: nix -Lv flake check - - name: check nix parsing - run: nix -Lv develop -c evalnix - - name: get latest tag id: latest uses: actions-ecosystem/action-get-latest-tag@v1 diff --git a/flake.nix b/flake.nix index 4ad5d7e..c318154 100644 --- a/flake.nix +++ b/flake.nix @@ -125,12 +125,6 @@ kube3d kubie ]; - packages = [ - (pkgs.writeShellScriptBin "evalnix" '' - # check nix parsing (e.g., in CI) - ${pkgs.fd}/bin/fd --extension nix --exec nix-instantiate --parse --quiet {} >/dev/null - '') - ]; }; });