summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2024-07-06 04:03:00 -0400
committerseth <[email protected]>2024-07-06 04:12:41 -0400
commitbd3c8d11101fc2b90e37d60d99a9e544e69f194d (patch)
tree40715f227321e8b52cdc38b97c8d53cad7608b45
parent8875ad5fb466944667e5171035aa8f5c01675e93 (diff)
flake: drop flake-checks
-rw-r--r--flake.lock16
-rw-r--r--flake.nix17
2 files changed, 1 insertions, 32 deletions
diff --git a/flake.lock b/flake.lock
index e0de3b2..e4f3dbe 100644
--- a/flake.lock
+++ b/flake.lock
@@ -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"
}
}
diff --git a/flake.nix b/flake.nix
index 458337b..ae55509 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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,