Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 34 lines 703 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5 netlify-cli, 6}: 7 8buildGoModule { 9 pname = "esbuild"; 10 version = "0.14.39"; 11 12 src = fetchFromGitHub { 13 owner = "netlify"; 14 repo = "esbuild"; 15 rev = "5faa7ad54c99a953d05c06819298d2b6f8c82d80"; 16 sha256 = "pYiwGjgFMclPYTW0Qml7Pr/knT1gywUAGANra5aojYM="; 17 }; 18 19 vendorHash = "sha256-QPkBR+FscUc3jOvH7olcGUhM6OW4vxawmNJuRQxPuGs="; 20 21 passthru = { 22 tests = { 23 inherit netlify-cli; 24 }; 25 }; 26 27 meta = with lib; { 28 description = "Fork of esbuild maintained by netlify"; 29 homepage = "https://github.com/netlify/esbuild"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ roberth ]; 32 mainProgram = "esbuild"; 33 }; 34}