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

23 lines
555 B
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "esbuild";
2021-09-15 10:44:17 +00:00
version = "0.12.28";
src = fetchFromGitHub {
owner = "evanw";
repo = "esbuild";
rev = "v${version}";
2021-09-15 10:44:17 +00:00
sha256 = "sha256-SCOY70slGjTT9mUtaSr7qa1PF3nD7AM4AyP1CTVeWuY=";
};
2021-09-14 06:33:28 +00:00
vendorSha256 = "sha256-QPkBR+FscUc3jOvH7olcGUhM6OW4vxawmNJuRQxPuGs=";
meta = with lib; {
description = "An extremely fast JavaScript bundler";
homepage = "https://esbuild.github.io";
license = licenses.mit;
maintainers = with maintainers; [ lucus16 ];
};
}