1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-07-31 04:27:45 +00:00

feat: trim end of whitespace lines

This commit is contained in:
Kevin Amado 2022-01-28 00:08:27 -05:00
parent c671ef15fc
commit b6679fa6e3
No known key found for this signature in database
GPG key ID: FFF341057F503148
4 changed files with 21 additions and 21 deletions

View file

@ -46,7 +46,7 @@
packages = [ nixpkgs.cargo-tarpaulin nixpkgs.rustup ];
shellHook =
''
rustup toolchain install nightly
rustup toolchain install nightly
'';
};
packages = {
@ -58,15 +58,15 @@
builtins.toFile
"builder.sh"
''
source $stdenv/setup
source $stdenv/setup
cp -rT $nixpkgs $out
chmod -R +w $out
cp -rT $nixpkgs $out
chmod -R +w $out
alejandra $out
alejandra $out
git diff --no-index $nixpkgs $out > $diff || true
'';
git diff --no-index $nixpkgs $out > $diff || true
'';
buildInputs = [ inputs.self.defaultPackage.${ system } nixpkgs.git ];
nixpkgs = inputs.nixpkgs.sourceInfo.outPath;
NIX_BUILD_CORES = 0;