air: nixfmt-rfc-style

This commit is contained in:
Raghav Sood 2024-06-05 02:06:20 +08:00
parent 3dbdeee264
commit 9b5a2862c9
No known key found for this signature in database
GPG Key ID: 13D53E9EB65DE19C

View File

@ -1,4 +1,8 @@
{ lib, buildGoModule, fetchFromGitHub }:
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "air";
@ -13,7 +17,11 @@ buildGoModule rec {
vendorHash = "sha256-dSu00NAq6hEOdJxXp+12UaUq32z53Wzla3/u+2nxqPw=";
ldflags = [ "-s" "-w" "-X=main.airVersion=${version}" ];
ldflags = [
"-s"
"-w"
"-X=main.airVersion=${version}"
];
subPackages = [ "." ];