aboutsummaryrefslogtreecommitdiff
path: root/src/x509-info/nix/check.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-08-29 09:11:42 -0700
committerFranck Cuny <franck@fcuny.net>2025-08-29 09:11:42 -0700
commit1f1dd178db63068867520ece2530ecf20f34a6ed (patch)
treee6f6c30530af7f4eeaffbe8bc3bb278562eb25bc /src/x509-info/nix/check.nix
parentMerge pull request #26 from fcuny/dependabot/cargo/clap-4.5.8 (diff)
downloadx-1f1dd178db63068867520ece2530ecf20f34a6ed.tar.gz
remove unused files
Diffstat (limited to 'src/x509-info/nix/check.nix')
-rw-r--r--src/x509-info/nix/check.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/src/x509-info/nix/check.nix b/src/x509-info/nix/check.nix
deleted file mode 100644
index 4d7743c..0000000
--- a/src/x509-info/nix/check.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ pkgs, toolchain }:
-
-let
- inherit (pkgs) writeShellApplication;
-in
-{
-
- # Format
- check-rustfmt = (writeShellApplication {
- name = "check-rustfmt";
- runtimeInputs = [ toolchain ];
- text = "cargo fmt --check";
- });
-
- # Spelling
- check-spelling = (writeShellApplication {
- name = "check-spelling";
- runtimeInputs = with pkgs; [ git codespell ];
- text = ''
- codespell \
- --ignore-words-list="crate" \
- --skip="./target,.git" \
- .
- '';
- });
-
- # NixFormatting
- check-nixpkgs-fmt = (writeShellApplication {
- name = "check-nixpkgs-fmt";
- runtimeInputs = with pkgs; [ git nixpkgs-fmt findutils ];
- text = ''
- nixpkgs-fmt --check .
- '';
- });
-
- # Semver
- check-semver = (writeShellApplication {
- name = "check-semver";
- runtimeInputs = with pkgs; [ cargo-semver-checks ];
- text = ''
- cargo-semver-checks semver-checks check-release
- '';
- });
-}