aboutsummaryrefslogtreecommitdiff
path: root/src/x509-info/nix/check.nix
diff options
context:
space:
mode:
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
- '';
- });
-}