We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b11474c commit 97e94baCopy full SHA for 97e94ba
nix/packages.nix
@@ -19,7 +19,8 @@
19
pname = "treefmt";
20
# there's no good way of tying in the version to a git tag or branch
21
# so for simplicity's sake we set the version as the commit revision hash
22
- version = self.shortRev or self.dirtyShortRev;
+ # we remove the `-dirty` suffix to avoid a lot of unnecessary rebuilds in local dev
23
+ version = lib.removeSuffix "-dirty" (self.shortRev or self.dirtyShortRev);
24
25
# ensure we are using the same version of go to build with
26
inherit (pkgs) go;
0 commit comments