{ description = "text-editor"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; inputs.systems.url = "github:msfjarvis/flake-systems"; inputs.advisory-db.url = "github:rustsec/advisory-db"; inputs.advisory-db.flake = false; inputs.crane.url = "github:ipetkov/crane"; inputs.crane.inputs.nixpkgs.follows = "nixpkgs"; inputs.devshell.url = "github:numtide/devshell"; inputs.devshell.inputs.nixpkgs.follows = "nixpkgs"; inputs.devshell.inputs.flake-utils.follows = "flake-utils"; inputs.fenix.url = "github:nix-community/fenix"; inputs.fenix.inputs.nixpkgs.follows = "nixpkgs"; inputs.flake-utils.url = "github:numtide/flake-utils"; inputs.flake-utils.inputs.systems.follows = "systems"; inputs.flake-compat.url = "github:nix-community/flake-compat"; inputs.flake-compat.flake = false; outputs = { self, nixpkgs, advisory-db, crane, devshell, fenix, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; overlays = [devshell.overlays.default]; }; rustStable = (import fenix {inherit pkgs;}).fromToolchainFile { file = ./rust-toolchain.toml; sha256 = "sha256-gdYqng0y9iHYzYPAdkC/ka3DRny3La/S5G8ASj0Ayyc="; }; craneLib = (crane.mkLib pkgs).overrideToolchain rustStable; commonArgs = { src = craneLib.cleanCargoSource ./.; buildInputs = []; nativeBuildInputs = []; cargoClippyExtraArgs = "--all-targets -- --deny warnings"; }; cargoArtifacts = craneLib.buildDepsOnly (commonArgs // {doCheck = false;}); text-editor = craneLib.buildPackage (commonArgs // {doCheck = false;}); text-editor-clippy = craneLib.cargoClippy (commonArgs // { inherit cargoArtifacts; }); text-editor-fmt = craneLib.cargoFmt (commonArgs // {}); text-editor-audit = craneLib.cargoAudit (commonArgs // {inherit advisory-db;}); in { checks = { inherit text-editor text-editor-audit text-editor-clippy text-editor-fmt; }; packages.default = text-editor; apps.default = flake-utils.lib.mkApp {drv = text-editor;}; devShells.default = pkgs.devshell.mkShell { bash = {interactive = "";}; env = [ { name = "DEVSHELL_NO_MOTD"; value = 1; } ]; packages = with pkgs; [ cargo-nextest rustStable ]; }; }); }