Skip to content

Commit 4a78a1e

Browse files
committed
fix: nix build
- update `gomod2nix.toml` - add formatters as `nativeBuildInputs` for nix build - export a `XDG_CACHE_HOME` for checks Signed-off-by: Brian McGee <[email protected]>
1 parent 811f883 commit 4a78a1e

File tree

4 files changed

+36
-24
lines changed

4 files changed

+36
-24
lines changed

gomod2nix.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ schema = 3
4646
[mod."github.com/muesli/termenv"]
4747
version = "v0.15.2"
4848
hash = "sha256-Eum/SpyytcNIchANPkG4bYGBgcezLgej7j/+6IhqoMU="
49+
[mod."github.com/otiai10/copy"]
50+
version = "v1.14.0"
51+
hash = "sha256-xsaL1ddkPS544y0Jv7u/INUALBYmYq29ddWvysLXk4A="
4952
[mod."github.com/pmezard/go-difflib"]
5053
version = "v1.0.0"
5154
hash = "sha256-/FtmHnaGjdvEIKAJtrUfEhV7EVo5A/eYrtdnUkuxLDA="
@@ -61,9 +64,6 @@ schema = 3
6164
[mod."github.com/vmihailenco/tagparser/v2"]
6265
version = "v2.0.0"
6366
hash = "sha256-M9QyaKhSmmYwsJk7gkjtqu9PuiqZHSmTkous8VWkWY0="
64-
[mod."github.com/ztrue/shutdown"]
65-
version = "v0.1.1"
66-
hash = "sha256-+ygx5THHu9g+vBAn6b63tV35bvQGdRyto4pLhkontJI="
6767
[mod."go.etcd.io/bbolt"]
6868
version = "v1.3.8"
6969
hash = "sha256-ekKy8198B2GfPldHLYZnvNjID6x07dUPYKgFx84TgVs="

nix/devshell.nix

+9-21
Original file line numberDiff line numberDiff line change
@@ -20,27 +20,15 @@
2020
}
2121
];
2222

23-
packages = with pkgs; [
24-
# golang
25-
go
26-
gotools
27-
delve
28-
golangci-lint
29-
30-
# formatters for testing
31-
alejandra
32-
elmPackages.elm-format
33-
haskellPackages.cabal-fmt
34-
haskellPackages.ormolu
35-
mdsh
36-
nodePackages.prettier
37-
python3.pkgs.black
38-
rufo
39-
rustfmt
40-
shellcheck
41-
shfmt
42-
terraform
43-
];
23+
packages = with pkgs;
24+
[
25+
# golang
26+
go
27+
delve
28+
]
29+
++
30+
# include formatters for development and testing
31+
(import ./formatters.nix pkgs);
4432

4533
commands = [
4634
{

nix/formatters.nix

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
pkgs:
2+
with pkgs; [
3+
alejandra
4+
elmPackages.elm-format
5+
gotools
6+
haskellPackages.cabal-fmt
7+
haskellPackages.ormolu
8+
mdsh
9+
nodePackages.prettier
10+
python3.pkgs.black
11+
rufo
12+
rustfmt
13+
shellcheck
14+
shfmt
15+
terraform
16+
]

nix/packages.nix

+8
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,14 @@
2626
"-X 'build.Version=${version}'"
2727
];
2828

29+
# we need some formatters available for the tests
30+
nativeBuildInputs = import ./formatters.nix pkgs;
31+
32+
preCheck = ''
33+
XDG_CACHE_HOME=$(mktemp -d)
34+
export XDG_CACHE_HOME
35+
'';
36+
2937
meta = with lib; {
3038
description = "treefmt: one CLI to format your repo";
3139
homepage = "https://git.numtide.com/numtide/treefmt";

0 commit comments

Comments
 (0)