1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-07-29 19:47:45 +00:00
alejandra/README.md
2025-07-02 22:30:46 -05:00

347 lines
9.1 KiB
Markdown

<h1 align="center">Alejandra 💅</h2>
<p align="center">The Uncompromising Nix Code Formatter</p>
<p align="center">
<a
href="https://buildkite.com/kamadorueda/alejandra"
>
<img
alt="CI/CD"
src="https://badge.buildkite.com/67d170860f5630bbc776a97fb0be9c88a97c92860c91f77aa0.svg?branch=main"
>
</img>
</a>
<a
href="https://coveralls.io/github/kamadorueda/alejandra?branch=main"
>
<img
alt="Coverage"
src="https://coveralls.io/repos/github/kamadorueda/alejandra/badge.svg?branch=main"
>
</img>
</a>
<a
href="https://github.com/kamadorueda/alejandra/blob/main/UNLICENSE"
>
<img
alt="License: The Unlicense"
src="https://img.shields.io/badge/license-The Unlicense-green.svg"
>
</a>
<a
href="https://github.com/kamadorueda/alejandra"
>
<img
alt="style: Alejandra"
src="https://img.shields.io/badge/code%20style-Alejandra-green.svg"
>
</a>
</p>
<p align="center">
Try it on your browser!
<a
href="https://kamadorueda.github.io/alejandra/"
>
here
</a>
</p>
## Features
- ✔️ **Fast**
It's written in [Rust](https://www.rust-lang.org/)
and formats [Nixpkgs](https://github.com/NixOS/nixpkgs)
in just a few seconds.
[^benchmark-specs]
- ✔️ **Powerful**
We define a comprehensive style
for all possible combinations of the Nix expression language.
- ✔️ **Reliable**
High coverage, battle tested.
From Nix's eyes, code is _just_ the same.
[^semantic-changes]
- ✔️ **Beautiful**
Beauty is subjective, right?
We started from the original style of
[Nixpkgs](https://github.com/NixOS/nixpkgs),
and then we applied the feedback of developers
who have used [Nix](https://nixos.org) at scale
for several years,
producing a very **well-grounded** [**style guide**](./STYLE.md).
For everything else, some pieces of the style are [configurable](#experimental-configuration-options).
- ✔️ **Transparent**
You won't notice the formatter after a while.
Humans care about the content,
machines about the style!
- ✔️ **Native**
We integrate with common code editors and workflows:
- [Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=kamadorueda.alejandra)
- [Neovim](./integrations/neovim/README.md)
- [Vim](./integrations/vim/README.md)
- [GNU Emacs](./integrations/gnu-emacs/README.md)
- [Doom Emacs](./integrations/doom-emacs/README.md)
- [Pre-commit](./integrations/pre-commit/README.md)
- [Pre-commit-hooks.nix](./integrations/pre-commit-hooks-nix/README.md)
## Getting started
### On the web editor
Please visit:
[kamadorueda.github.io/alejandra](https://kamadorueda.github.io/alejandra/).
### Prebuilt binaries
You can download a binary for your platform:
- [aarch64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/4.0.0/alejandra-aarch64-unknown-linux-musl)
- [x86_64-unknown-linux-musl](https://github.com/kamadorueda/alejandra/releases/download/4.0.0/alejandra-x86_64-unknown-linux-musl)
Make it executable (`$ chmod +x`)
and run Alejandra with:
```bash
$ ./alejandra --help
```
or:
```bash
$ /path/to/alejandra --help
```
### From [Nixpkgs](https://github.com/nixos/nixpkgs)
Please visit: [search.nixos.org/packages?query=alejandra](https://search.nixos.org/packages?channel=unstable&show=alejandra&from=0&size=50&sort=relevance&type=packages&query=alejandra).
### Nix installation
- Nix stable:
```bash
$ nix-env -ivf https://github.com/kamadorueda/alejandra/tarball/4.0.0
```
- Nix with [Flakes](https://wiki.nixos.org/wiki/Flakes):
```bash
$ nix profile install github:kamadorueda/alejandra/4.0.0
```
Then run Alejandra with:
```bash
$ alejandra --help
```
### NixOS installation
- Nix stable:
```nix
let
alejandra =
(import (builtins.fetchTarball {
url = "https://github.com/kamadorueda/alejandra/tarball/4.0.0";
sha256 = "0000000000000000000000000000000000000000000000000000";
}) {})
.outPath;
in {
environment.systemPackages = [alejandra];
}
```
- Nix with [Flakes](https://wiki.nixos.org/wiki/Flakes):
```nix
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
alejandra.url = "github:kamadorueda/alejandra/4.0.0";
alejandra.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = {alejandra, nixpkgs, ...}: {
nixosConfigurations = {
example = nixpkgs.lib.nixosSystem rec {
# We support: aarch64-darwin, aarch64-linux, i686-linux, x86_64-darwin, x86_64-linux
system = "x86_64-linux";
modules = [
{
environment.systemPackages = [alejandra.defaultPackage.${system}];
}
# Import your other modules here
# ./path/to/my/module.nix
# ...
];
};
};
};
}
```
### From [Homebrew](https://brew.sh)
```bash
$ brew install alejandra
```
## (experimental) Configuration Options
You can configure Alejandra through a file named `alejandra.toml`.
This file will be automatically detected if found in the same directory
where Alejandra is being run from,
or you can tell Alejandra to use a different location by using the
`--experimental-config ./path/to/alejandra.toml` flag in the CLI.
You can find a full configuration file and the supported options here: [alejandra.toml](./alejandra.toml).
## Cool libraries
- [NixEL](https://github.com/kamadorueda/nixel)
- [Santiago](https://github.com/kamadorueda/santiago)
- [rnix-parser](https://github.com/nix-community/rnix-parser)
## Alternatives
- [NixOS/nixfmt](https://github.com/NixOS/nixfmt)
- [serokell/nixfmt](https://github.com/serokell/nixfmt)
- [nixpkgs-fmt](https://github.com/nix-community/nixpkgs-fmt)
## Versioning
We use [semver](https://semver.org/) to version Alejandra.
Our public API consists of:
- The formatting rules (a.k.a. the style).
- The CLI tool (`$ alejandra`),
command line flags,
positional arguments,
exit codes,
and stdout.
With the exception of those explicitly marked as "experimental".
## Changelog
Please read: [CHANGELOG](./CHANGELOG.md).
## Contributors
The following people have helped improving Alejandra.
Thank you ❤️
[Bobbe](https://github.com/30350n),
[Connor Baker](https://github.com/ConnorBaker),
[Daniel Bast](https://github.com/dbast),
[David Arnold](https://github.com/blaggacao),
[David Hauer](https://github.com/DavHau),
[esf](https://github.com/exscientiafortis),
[Fabian Möller](https://github.com/B4dM4n),
[Florian Finkernagel](https://github.com/TyberiusPrime),
[Jamie Quigley](https://github.com/Sciencentistguy),
[Joachim Ernst](https://github.com/0x4A6F),
[Johannes Kirschbauer](https://github.com/hsjobeki),
[Jörg Thalheim](https://github.com/Mic92),
[Kevin Amado](https://github.com/kamadorueda)
([Email](mailto:kamadorueda@gmail.com),
[LinkedIn](https://www.linkedin.com/in/kamadorueda)),
[Loïc Reynier](https://github.com/loicreynier),
[Matthew Kenigsberg](https://github.com/mkenigs),
[Michael Utz](https://github.com/theutz),
[Mr Hedgehog](https://github.com/ModdedGamers),
[Nathan Henrie](https://github.com/n8henrie),
[Norbert Melzer](https://github.com/NobbZ),
[Pablo Ovelleiro Corral](https://github.com/pinpox),
[Patrick Stevens](https://github.com/Smaug123),
[Piegames](https://github.com/piegamesde),
[Rebecca Turner](https://github.com/9999years),
[Rehno Lindeque](https://github.com/rehno-lindeque),
[Rok Garbas](https://github.com/garbas),
[Ryan Mulligan](https://github.com/ryantm),
[Thomas Bereknyei](https://github.com/tomberek),
[Tobias Bora](https://github.com/tobiasBora),
[Tristan Maat](https://github.com/TLATER),
[UserSv4](https://github.com/UserSv4),
[Victor Engmark](https://github.com/l0b0),
[Vincent Ambo](https://github.com/tazjin),
[Vladimir Fetisov](https://github.com/3timeslazy),
and [Yorick van Pelt](https://github.com/yorickvP).
## Footnotes
[^benchmark-specs]:
Running on a [machine](https://github.com/kamadorueda/machine) with:
- CPU: 4 physical, 4 logical, 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz
- MHz: from 400 to 4700 MHz
- BogoMips: 5606.40
- Cache L3: 12 MiB
Using:
```bash
# x86_64-unknown-linux-gnu
$ time alejandra --threads $threads /path/to/nixpkgs
```
Results:
| $threads | Seconds |
| :------: | :-----: |
| 1 | 45 |
| 2 | 25 |
| 4 | 14 |
[^semantic-changes]: The methodology to claim this is:
1. Checkout [Nixpkgs](https://github.com/nixos/nixpkgs) and run:
```bash
$ nix-env -qaf . --drv-path --xml > before
```
1. Now format with Alejandra and run:
```bash
$ nix-env -qaf . --drv-path --xml > after
```
As of 2022-06-22,
there are 41 differences in a set of 38109 derivations
because of things like this:
```
goDeps = ./deps.nix;
```
Since `./deps.nix` was also formatted
you get a semantical difference.
This is something that should be solved on Nixpkgs
and not a bug in Alejandra.
For example:
- https://github.com/NixOS/nixpkgs/pull/178378
- https://github.com/NixOS/nixpkgs/pull/157760