Merge pull request #114201 from Gonzih/go-air-init

air: init at 1.15.1
This commit is contained in:
Fabian Affolter 2021-02-25 13:28:24 +01:00 committed by GitHub
commit 772406c2a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "air";
version = "1.15.1";
src = fetchFromGitHub {
owner = "cosmtrek";
repo = "air";
rev = "v${version}";
sha256 = "0d34k8hyag84j24bhax4gvg8mkzqyhdqd16rfirpfjiqvqh0vdkz";
};
vendorSha256 = "0k28rxnd0vyb6ljbi83bm1gl7j4r660a3ckjxnzc2qzwvfj69g53";
subPackages = [ "." ];
meta = with lib; {
description = "Live reload for Go apps";
homepage = "https://github.com/cosmtrek/air";
license = licenses.gpl3Only;
maintainers = with maintainers; [ Gonzih ];
};
}

View File

@ -19772,6 +19772,8 @@ in
open-vm-tools = callPackage ../applications/virtualization/open-vm-tools { }; open-vm-tools = callPackage ../applications/virtualization/open-vm-tools { };
open-vm-tools-headless = open-vm-tools.override { withX = false; }; open-vm-tools-headless = open-vm-tools.override { withX = false; };
air = callPackage ../development/tools/air { };
delve = callPackage ../development/tools/delve { }; delve = callPackage ../development/tools/delve { };
dep = callPackage ../development/tools/dep { }; dep = callPackage ../development/tools/dep { };