Merge pull request #317256 from RaghavSood/air/fix-upstream

air: update upstream organization
This commit is contained in:
Raghav Sood 2024-06-05 10:38:56 +08:00 committed by GitHub
commit 9b54ea06a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,11 +1,15 @@
{ lib, buildGoModule, fetchFromGitHub }:
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "air";
version = "1.52.1";
src = fetchFromGitHub {
owner = "cosmtrek";
owner = "air-verse";
repo = "air";
rev = "v${version}";
hash = "sha256-KTutLvcLH1dOsJFDaEU2c4wGbQyRE7qUHah4mEXCL08=";
@ -13,14 +17,18 @@ buildGoModule rec {
vendorHash = "sha256-dSu00NAq6hEOdJxXp+12UaUq32z53Wzla3/u+2nxqPw=";
ldflags = [ "-s" "-w" "-X=main.airVersion=${version}" ];
ldflags = [
"-s"
"-w"
"-X=main.airVersion=${version}"
];
subPackages = [ "." ];
meta = with lib; {
description = "Live reload for Go apps";
mainProgram = "air";
homepage = "https://github.com/cosmtrek/air";
homepage = "https://github.com/air-verse/air";
license = licenses.gpl3Only;
maintainers = with maintainers; [ Gonzih ];
};