From bdb2ef7c4c24f8be3f6201ef97f1a33d9ed20eef Mon Sep 17 00:00:00 2001 From: seth Date: Tue, 6 Aug 2024 23:25:40 -0400 Subject: [PATCH] chore(nix): drop flake-checks --- flake.lock | 16 ---------------- flake.nix | 16 ---------------- 2 files changed, 32 deletions(-) diff --git a/flake.lock b/flake.lock index 083a821..54bf5da 100644 --- a/flake.lock +++ b/flake.lock @@ -1,20 +1,5 @@ { "nodes": { - "flake-checks": { - "locked": { - "lastModified": 1726652014, - "narHash": "sha256-TdbcCjW6z3VsFg1uvrvCdp0pzFXUyP8qegp8dSmQuaE=", - "owner": "getchoo", - "repo": "flake-checks", - "rev": "108aa8f5a8a610ae14c1edb61017dd750b666ed6", - "type": "github" - }, - "original": { - "owner": "getchoo", - "repo": "flake-checks", - "type": "github" - } - }, "nixpkgs": { "locked": { "lastModified": 1727335715, @@ -33,7 +18,6 @@ }, "root": { "inputs": { - "flake-checks": "flake-checks", "nixpkgs": "nixpkgs", "rust-overlay": "rust-overlay" } diff --git a/flake.nix b/flake.nix index e8c3db8..cc88cc8 100644 --- a/flake.nix +++ b/flake.nix @@ -4,8 +4,6 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; - flake-checks.url = "github:getchoo/flake-checks"; - rust-overlay = { url = "github:oxalica/rust-overlay"; inputs.nixpkgs.follows = "nixpkgs"; @@ -15,7 +13,6 @@ outputs = { self, nixpkgs, - flake-checks, rust-overlay, }: let systems = [ @@ -27,19 +24,6 @@ forAllSystems = fn: nixpkgs.lib.genAttrs systems (system: fn nixpkgs.legacyPackages.${system}); in { - checks = forAllSystems (pkgs: let - flake-checks' = flake-checks.lib.mkChecks { - inherit pkgs; - root = ./.; - }; - in { - check-actionlint = flake-checks'.actionlint; - check-alejandra = flake-checks'.alejandra; - check-deadnix = flake-checks'.deadnix; - check-rustfmt = flake-checks'.rustfmt; - check-statix = flake-checks'.statix; - }); - devShells = forAllSystems (pkgs: { default = pkgs.mkShell { packages = with pkgs; [