mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
esbuild_netlify: init
This commit is contained in:
parent
c7fd252d32
commit
e8c67529a5
22
pkgs/development/tools/esbuild/netlify.nix
Normal file
22
pkgs/development/tools/esbuild/netlify.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ buildGoModule, fetchFromGitHub, lib }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "esbuild";
|
||||
version = "0.13.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "netlify";
|
||||
repo = "esbuild";
|
||||
rev = "v${version}";
|
||||
sha256 = "0asjmqfzdrpfx2hd5hkac1swp52qknyqavsm59j8xr4c1ixhc6n9";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-2ABWPqhK2Cf4ipQH7XvRrd+ZscJhYPc3SV2cGT0apdg=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A fork of esbuild maintained by netlify";
|
||||
homepage = "https://github.com/netlify/esbuild";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ roberth ];
|
||||
};
|
||||
}
|
@ -1614,6 +1614,8 @@ with pkgs;
|
||||
|
||||
esbuild = callPackage ../development/tools/esbuild { };
|
||||
|
||||
esbuild_netlify = callPackage ../development/tools/esbuild/netlify.nix { };
|
||||
|
||||
essentia-extractor = callPackage ../tools/audio/essentia-extractor { };
|
||||
|
||||
esh = callPackage ../tools/text/esh { };
|
||||
|
Loading…
Reference in New Issue
Block a user