nixpkgs/pkgs/development/tools/air/default.nix

25 lines
572 B
Nix
Raw Normal View History

2021-02-24 02:24:15 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "air";
2021-04-27 18:40:39 +00:00
version = "1.27.3";
2021-02-24 02:24:15 +00:00
src = fetchFromGitHub {
owner = "cosmtrek";
repo = "air";
rev = "v${version}";
2021-04-27 18:40:39 +00:00
sha256 = "sha256-QO3cPyr2FqCdoiax/V0fe7kRwT61T3efnfO8uWp8rRM=";
2021-02-24 02:24:15 +00:00
};
2021-04-11 05:07:18 +00:00
vendorSha256 = "sha256-B7AgUFjiW3P1dU88u3kswbCQJ7Qq7rgPlX+b+3Pq1L4=";
2021-02-24 02:24:15 +00:00
subPackages = [ "." ];
meta = with lib; {
description = "Live reload for Go apps";
homepage = "https://github.com/cosmtrek/air";
license = licenses.gpl3Only;
maintainers = with maintainers; [ Gonzih ];
};
}