diff options
| author | seth <[email protected]> | 2024-07-06 04:03:00 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-07-06 04:12:41 -0400 |
| commit | bd3c8d11101fc2b90e37d60d99a9e544e69f194d (patch) | |
| tree | 40715f227321e8b52cdc38b97c8d53cad7608b45 | |
| parent | 8875ad5fb466944667e5171035aa8f5c01675e93 (diff) | |
flake: drop flake-checks
| -rw-r--r-- | flake.lock | 16 | ||||
| -rw-r--r-- | flake.nix | 17 |
2 files changed, 1 insertions, 32 deletions
@@ -1,20 +1,5 @@ { "nodes": { - "flake-checks": { - "locked": { - "lastModified": 1719755104, - "narHash": "sha256-X1nrRnUqSNNWgmDKvRH8I4cc4kCE4Vn6694adXnnGSo=", - "owner": "getchoo", - "repo": "flake-checks", - "rev": "f0e8a00b8af9cfb553bfd7f90d63899158db6df8", - "type": "github" - }, - "original": { - "owner": "getchoo", - "repo": "flake-checks", - "type": "github" - } - }, "nixpkgs": { "locked": { "lastModified": 1720149507, @@ -33,7 +18,6 @@ }, "root": { "inputs": { - "flake-checks": "flake-checks", "nixpkgs": "nixpkgs" } } @@ -8,12 +8,10 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - # this can be removed with `inputs.flake-checks.follows = ""` - flake-checks.url = "github:getchoo/flake-checks"; }; outputs = - { nixpkgs, flake-checks, ... }: + { nixpkgs, ... }: let systems = [ "x86_64-linux" @@ -25,19 +23,6 @@ forAllSystems = fn: nixpkgs.lib.genAttrs systems (sys: fn nixpkgs.legacyPackages.${sys}); in { - checks = forAllSystems ( - pkgs: - let - flake-checks' = flake-checks.lib.mkChecks { - root = ./.; - inherit pkgs; - }; - in - { - inherit (flake-checks') actionlint deadnix statix; - } - ); - packages = forAllSystems ( { lib, |
