mio-ops/shell.nix

17 lines
402 B
Nix
Raw Normal View History

2023-07-20 03:48:15 +00:00
{
pkgs ? import <nixpkgs> {},
mkShell,
2023-08-03 11:06:32 +00:00
alejandra,
2023-07-20 03:48:15 +00:00
nix,
}:
with pkgs;
mkShell {
buildInputs = [
alejandra # The Uncompromising Nix Code Formatter
nix # Powerful package manager, makes packaging reliable & reproducible
2024-08-22 01:47:13 +00:00
nixops_unstable_minimal # work around for issue #127423
2023-07-20 03:48:15 +00:00
tea # Gitea official CLI client
treefmt # one CLI to format the code tree
];
}