Skip to content

Commit ad3e661

Browse files
committed
feat: add flake compat
Signed-off-by: Brian McGee <[email protected]>
1 parent 8e840a9 commit ad3e661

File tree

5 files changed

+59
-10
lines changed

5 files changed

+59
-10
lines changed

default.nix

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This file provides backward compatibility to nix < 2.4 clients
2+
{system ? builtins.currentSystem}: let
3+
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
4+
5+
inherit (lock.nodes.flake-compat.locked) owner repo rev narHash;
6+
7+
flake-compat = fetchTarball {
8+
url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz";
9+
sha256 = narHash;
10+
};
11+
12+
flake = import flake-compat {
13+
inherit system;
14+
src = ./.;
15+
};
16+
in
17+
flake.defaultNix

docs/faq.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@
22

33
## How does treefmt function?
44

5-
`Treefmt` traverses all your project's folders, maps files to specific code formatters, and formats the code
5+
`Treefmt` traverses all your project's folders, maps files to specific code formatters, and formats the code
66
accordingly. Other tools also traverse the filesystem, but not necessarily starting from the root of the project.
77

8-
Contrary to other formatters, `treefmt` doesn't preview the changes before writing them to a file. If you want to view
9-
the changes, you can always check the diff in your version control (we assume that your project is checked into a
10-
version control system).
8+
Contrary to other formatters, `treefmt` doesn't preview the changes before writing them to a file. If you want to view
9+
the changes, you can always check the diff in your version control (we assume that your project is checked into a
10+
version control system).
1111

12-
You can also rely on version control if errors were introduced into your code as a result of disruptions in the
12+
You can also rely on version control if errors were introduced into your code as a result of disruptions in the
1313
formatter's work.
1414

1515
## How is the cache organized?
1616

17-
At the moment, the cache is a [BoltDB] database file in which file paths are mapped to `mtimes`.
17+
At the moment, the cache is a [BoltDB] database file in which file paths are mapped to `mtimes`.
1818

1919
The file is located in:
2020

2121
```
2222
~/.cache/treefmt/eval-cache/<hash-of-the-treefmt.toml-path>.db
2323
```
2424

25-
At the end of each run, the database is updated with the last formatting time entries. In this way, we can
25+
At the end of each run, the database is updated with the last formatting time entries. In this way, we can
2626
compare the last change time of the file to the last formatting time, and figure out which files need re-formatting.
2727

28-
[BoltDB]: https://github.com/etcd-io/bbolt
28+
[BoltDB]: https://github.com/etcd-io/bbolt

flake.lock

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
inputs = {
55
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
6-
76
flake-parts.url = "github:hercules-ci/flake-parts";
87
flake-root.url = "github:srid/flake-root";
98
treefmt-nix = {
@@ -19,8 +18,8 @@
1918
url = "github:nix-community/gomod2nix";
2019
inputs.nixpkgs.follows = "nixpkgs";
2120
};
22-
2321
nix-filter.url = "github:numtide/nix-filter";
22+
flake-compat.url = "github:nix-community/flake-compat";
2423
};
2524

2625
outputs = inputs @ {flake-parts, ...}:

shell.nix

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This file provides backward compatibility to nix < 2.4 clients
2+
{system ? builtins.currentSystem}: let
3+
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
4+
5+
inherit (lock.nodes.flake-compat.locked) owner repo rev narHash;
6+
7+
flake-compat = fetchTarball {
8+
url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz";
9+
sha256 = narHash;
10+
};
11+
12+
flake = import flake-compat {
13+
inherit system;
14+
src = ./.;
15+
};
16+
in
17+
flake.shellNix

0 commit comments

Comments
 (0)