treefmt/default.nix

96 lines
2.3 KiB
Nix
Raw Normal View History

{ system ? builtins.currentSystem
, inputs ? import ./flake.lock.nix { }
, nixpkgs ? import inputs.nixpkgs {
inherit system;
# Makes the config pure as well. See <nixpkgs>/top-level/impure.nix:
config = { };
overlays = [ ];
}
2021-12-12 00:43:02 +03:00
, rustPackages ? nixpkgs.rustPackages
}:
let
2022-07-05 12:17:10 +03:00
lib = nixpkgs.lib;
cargoToml = with builtins; (fromTOML (readFile ./Cargo.toml));
2021-12-12 00:43:02 +03:00
# What is used when invoking `nix run github:numtide/treefmt`
2021-12-12 00:43:02 +03:00
treefmt = rustPackages.rustPlatform.buildRustPackage {
inherit (cargoToml.package) name version;
2022-06-07 20:52:38 +03:00
src = builtins.path {
path = ./.;
filter = name: type:
name == toString ./Cargo.toml
|| name == toString ./Cargo.lock
|| lib.hasPrefix (toString ./src) name
|| lib.hasPrefix (toString ./benches) name
;
};
buildInputs = with nixpkgs; lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security libiconv ];
doCheck = true;
cargoLock.lockFile = ./Cargo.lock;
meta.description = "one CLI to format the code tree";
};
# Add all the dependencies of treefmt, plus more build tools
devShell = treefmt.overrideAttrs (prev: {
shellHook = ''
# Put the treefmt binary on the PATH when it's built
export PATH=$PWD/target/debug:$PATH
'';
nativeBuildInputs = prev.nativeBuildInputs ++ (with nixpkgs; [
# Build tools
2021-12-12 00:43:02 +03:00
rustPackages.clippy
rust-analyzer
# Code formatters
elmPackages.elm-format
go
haskellPackages.cabal-fmt
haskellPackages.ormolu
2021-12-18 14:33:12 +03:00
mdsh
nixpkgs-fmt
nodePackages.prettier
python3.pkgs.black
rufo
rustPackages.rustfmt
2021-12-17 20:19:20 +03:00
shellcheck
shfmt
terraform
mdbook
]);
});
2021-12-12 00:43:02 +03:00
in
{
inherit treefmt devShell;
# A collection of packages for the project
docs = nixpkgs.callPackage ./docs { };
2021-12-12 00:43:02 +03:00
# Flake attributes
default = treefmt;
# Test that no HOME is needed when --no-cache is passed
treefmt-no-cache-no-home = nixpkgs.runCommandLocal "format"
{
buildInputs = [ treefmt ];
}
''
cat <<CONFIG > treefmt.toml
[formatter.nix]
command = "${nixpkgs.nixpkgs-fmt}/bin/nixpkgs-fmt"
includes = ["*.nix"]
CONFIG
# uncommenting this makes it work fine
# export HOME=$TMP
treefmt --no-cache --fail-on-change -C ./.
touch $out
'';
}