mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 03:03:37 +00:00
4a0f0f82ce
Diff: https://github.com/evanw/esbuild/compare/v0.19.4...v0.19.5 Changelog: https://github.com/evanw/esbuild/blob/v0.19.5/CHANGELOG.md
29 lines
746 B
Nix
29 lines
746 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "esbuild";
|
|
version = "0.19.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "evanw";
|
|
repo = "esbuild";
|
|
rev = "v${version}";
|
|
hash = "sha256-mIXsPj804jxDd8+jPH8tWnnUj7dXIRwfKTeT4WDWb5c=";
|
|
};
|
|
|
|
vendorHash = "sha256-+BfxCyg0KkDQpHt/wycy/8CTG6YBA/VJvJFhhzUnSiQ=";
|
|
|
|
subPackages = [ "cmd/esbuild" ];
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
description = "An extremely fast JavaScript bundler";
|
|
homepage = "https://esbuild.github.io";
|
|
changelog = "https://github.com/evanw/esbuild/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lucus16 marsam undefined-moe ];
|
|
mainProgram = "esbuild";
|
|
};
|
|
}
|