mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
esbuild: init at 0.11.12 (#120089)
Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch> Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
28f381bcf2
commit
54d8941a0d
22
pkgs/development/tools/esbuild/default.nix
Normal file
22
pkgs/development/tools/esbuild/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ buildGoModule, fetchFromGitHub, lib }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "esbuild";
|
||||
version = "0.11.12";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "evanw";
|
||||
repo = "esbuild";
|
||||
rev = "v${version}";
|
||||
sha256 = "1mxj4mrq1zbvv25alnc3s36bhnnhghivgwp45a7m3cp1389ffcd1";
|
||||
};
|
||||
|
||||
vendorSha256 = "1n5538yik72x94vzfq31qaqrkpxds5xys1wlibw2gn2am0z5c06q";
|
||||
|
||||
meta = with lib; {
|
||||
description = "An extremely fast JavaScript bundler";
|
||||
homepage = "https://esbuild.github.io";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ lucus16 ];
|
||||
};
|
||||
}
|
@ -1347,6 +1347,8 @@ in
|
||||
|
||||
enpass = callPackage ../tools/security/enpass { };
|
||||
|
||||
esbuild = callPackage ../development/tools/esbuild { };
|
||||
|
||||
essentia-extractor = callPackage ../tools/audio/essentia-extractor { };
|
||||
|
||||
esh = callPackage ../tools/text/esh { };
|
||||
|
Loading…
Reference in New Issue
Block a user