├── .github └── workflows │ └── mirrors.yml ├── LICENSE ├── README.md ├── README.zh-CN.md ├── bin ├── README.md └── update.ps1 ├── bucket ├── 7z.json ├── adb.json ├── ag.json ├── aria2.json ├── ast-grep.json ├── bat.json ├── bazel.json ├── belautils.json ├── cmake.json ├── curl.json ├── delta.json ├── deno.json ├── difftastic.json ├── dmd.json ├── duf.json ├── fd.json ├── git.json ├── go.json ├── graalvm-jdk.json ├── graalvm-jdk17.json ├── graphviz.json ├── grpcurl.json ├── heidisql.json ├── helix.json ├── helm.json ├── hugescm.json ├── igrep.json ├── ilspy.json ├── innoextract.json ├── innounp.json ├── intermodal.json ├── jom.json ├── k9s.json ├── kotlin-native.json ├── kubectl.json ├── ldc.json ├── less.json ├── msjdk.json ├── nasm.json ├── neovim.json ├── ninja.json ├── nmap.json ├── nodejs-lts.json ├── nodejs.json ├── nsis.json ├── nu.json ├── nuget.json ├── openjdk.json ├── openjdk8.json ├── ov.json ├── perl.json ├── procs.json ├── protobuf.json ├── putty.json ├── python.json ├── radare2.json ├── ripgrep.json ├── rust.json ├── scc.json ├── shfmt.json ├── swigwin.json ├── tokei.json ├── unrar.json ├── vswhere.json ├── watchexec.json ├── wget.json ├── wincurl.json ├── wsudo.json ├── xmake.json ├── zola.json └── zulu.json └── manifest.json /.github/workflows/mirrors.yml: -------------------------------------------------------------------------------- 1 | name: Push To Gitee 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | 8 | jobs: 9 | push: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - name: Checkout 13 | uses: actions/checkout@main 14 | with: 15 | ref: "master" 16 | persist-credentials: false 17 | fetch-depth: 0 18 | 19 | - run: | 20 | date > generated.txt 21 | git push https://ipvb:${{ secrets.GITEE_PERSONAL_ACCESS_TOKENS }}@gitee.com/baulk/bucket.git master -f 22 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright © 2025 Baulk contributors. All Rights Reserved. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Baulk default bucket 2 | 3 | [![Repository status](https://repology.org/badge/repository-big/baulk.svg)](https://repology.org/repository/baulk) 4 | 5 | 6 | Baulk default bucket. 7 | 8 | 9 | ## Mirrors 10 | 11 | Official mirror: https://gitee.com/baulk/bucket.git 12 | 13 | Replaced with official mirror repository (Users with poor browsing experience on Github): 14 | 15 | ```powershell 16 | baulk bucket add baulk https://gitee.com/baulk/bucket.git -MGit -R 17 | ``` 18 | -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- 1 | # Baulk default bucket 2 | 3 | [![Repository status](https://repology.org/badge/repository-big/baulk.svg)](https://repology.org/repository/baulk) 4 | 5 | 6 | Baulk 默认 bucket. 7 | 8 | 镜像使用方式,以 Gitee 为例: 9 | 10 | ```powershell 11 | baulk bucket add baulk https://gitee.com/baulk/bucket.git -MGit -R 12 | ``` 13 | -------------------------------------------------------------------------------- /bin/README.md: -------------------------------------------------------------------------------- 1 | # bin -------------------------------------------------------------------------------- /bin/update.ps1: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env pwsh 2 | 3 | 4 | $ScoopMain = "https://github.com/ScoopInstaller/Main.git" 5 | $ScoopMainRoot = Join-Path $env:TEMP -ChildPath "scoop_main" 6 | $ScoopMainBucket = Join-Path $ScoopMainRoot -ChildPath "bucket" 7 | $BaulkRoot = Split-Path -Path $PSScriptRoot 8 | $BaulkBucket = Join-Path -Path $BaulkRoot -ChildPath "bucket" 9 | 10 | # $ps = Start-Process -FilePath "git" -ArgumentList "clone $ScoopMain --depth=1 `"$ScoopMainRoot`"" -Wait -NoNewWindow -PassThru 11 | # if ($ps.ExitCode -ne 0) { 12 | # exit 1 13 | # } 14 | 15 | Get-ChildItem -Path "$ScoopMainBucket/*.json" -File | ForEach-Object { 16 | $BaseName = $_.BaseName 17 | $FullName = $_.FullName 18 | $Ours = "$BaulkBucket\$BaseName.json" 19 | if (!(Test-Path $Ours)) { 20 | return ; 21 | } 22 | $theirs = Get-Content $FullName | ConvertFrom-Json 23 | Write-Host "$BaseName ported to baulk: $($theirs.version)" 24 | } -------------------------------------------------------------------------------- /bucket/7z.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "7-Zip is a file archiver with a high compression ratio", 3 | "version": "24.09", 4 | "homepage": "https://www.7-zip.org/", 5 | "license": "Freeware,LGPL-2.0-only,BSD-3-Clause", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/ip7z/7zip/releases/download/24.09/7z2409-x64.exe", 9 | "hash": "SHA256:bdd1a33de78618d16ee4ce148b849932c05d0015491c34887846d431d29f308e" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/ip7z/7zip/releases/download/24.09/7z2409-arm64.exe", 13 | "hash": "SHA256:bc7b3a18f218f4916e1c4996751468f96e46eb7e97e91e8c1553d74793037f1a" 14 | } 15 | }, 16 | "extension": "7z", 17 | "launchers": [ 18 | "7z.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/adb.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Android Debug Bridge.", 3 | "version": "36.0.0", 4 | "homepage": "https://developer.android.com/studio/command-line/adb", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "32bit": { 8 | "url": "https://dl.google.com/android/repository/platform-tools_r36.0.0-win.zip", 9 | "hash": "SHA256:24bd8bebbbb58b9870db202b5c6775c4a49992632021c60750d9d8ec8179d5f0" 10 | } 11 | }, 12 | "extension": "zip", 13 | "launchers": [ 14 | "adb.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/ag.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A tool for searching code. Fork of The Silver Searcher; dedicated to building a well behaved version for Windows.", 3 | "version": "2.2.5", 4 | "homepage": "https://github.com/JFLarvoire/the_silver_searcher", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/JFLarvoire/the_silver_searcher/releases/download/2.2.5-Windows/ag-2021-11-14-2.2.5-amd64.zip", 9 | "uhash": "SHA256:ecde6ebcbd2d33ab9f50cca0800db4bd2ba183bdb7832a9d0b5ad05a684de958" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "ag.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/aria2.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "The ultra fast download utility", 3 | "version": "1.37.0", 4 | "homepage": "https://aria2.github.io/", 5 | "license": "GPL-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/aria2/aria2/releases/download/release-1.37.0/aria2-1.37.0-win-64bit-build1.zip", 9 | "uhash": "SHA256:67d015301eef0b612191212d564c5bb0a14b5b9c4796b76454276a4d28d9b288" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "aria2c.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/ast-grep.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A fast and polyglot tool for code searching, linting, rewriting at large scale.", 3 | "version": "0.38.4", 4 | "homepage": "https://ast-grep.github.io", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/ast-grep/ast-grep/releases/download/0.38.4/app-x86_64-pc-windows-msvc.zip", 9 | "hash": "SHA256:93a0ce2d1fddbcf89d901f0595eee5c22aa1ecb7bdb5b06dd93ac02dc25ef125" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/ast-grep/ast-grep/releases/download/0.38.4/app-aarch64-pc-windows-msvc.zip", 13 | "hash": "SHA256:c079974155cfbd2bcc56652882f8aae3c7b68cf2bc472e3ec857e4de19529d56" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "sg.exe", 19 | "ast-grep.exe" 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /bucket/bat.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A cat(1) clone with syntax highlighting and Git integration.", 3 | "version": "0.25.0", 4 | "homepage": "https://github.com/sharkdp/bat", 5 | "license": "Apache-2.0,MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/sharkdp/bat/releases/download/v0.25.0/bat-v0.25.0-x86_64-pc-windows-msvc.zip", 9 | "uhash": "SHA256:1d5ced071ba9c765e16f4065877c178cefcfd2fe9581e9ddc92af265b73991bd" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "bat.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/bazel.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A fast, scalable, multi-language and extensible build system.", 3 | "version": "8.2.1", 4 | "homepage": "https://bazel.build/", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/bazelbuild/bazel/releases/download/8.2.1/bazel-8.2.1-windows-x86_64.zip", 9 | "hash": "SHA256:703e2511235a8008c50b327729fcea7f2ecd177fc4437a566c80f255a39b9066" 10 | } 11 | }, 12 | "extension": "zip", 13 | "force_delete": [ 14 | "${USERPROFILE}\\_bazel_${USERNAME}" 15 | ], 16 | "links": [ 17 | "bazel.exe" 18 | ] 19 | } 20 | -------------------------------------------------------------------------------- /bucket/belautils.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "BelaUtils - Tools reimplemented using Bela library", 3 | "version": "2.0.3", 4 | "homepage": "https://github.com/fcharlie/BelaUtils", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/fcharlie/BelaUtils/releases/download/v2.0.3/BelaUtils-2.0.3-win-x64.zip", 9 | "hash": "SHA256:c3c6766b016916d4ae7d7b64b4a16b1c9a75276765d6e824a61e64cd18958175" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/fcharlie/BelaUtils/releases/download/v2.0.3/BelaUtils-2.0.3-win-arm64.zip", 13 | "hash": "SHA256:1cf4efff2f30aacd0977c3b4a5d60487576d13abaa08a8cacdf2b045a11f9e32" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "bin/bona.exe", 19 | "bin/caelum.exe", 20 | "bin/hastyhex.exe", 21 | "bin/kisasum.exe", 22 | "bin/kisasum-ui.exe", 23 | "bin/krycekium.exe" 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /bucket/cmake.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "CMake is an open-source, cross-platform family of tools designed to build, test and package software", 3 | "version": "4.0.2", 4 | "homepage": "https://cmake.org/", 5 | "license": "BSD-3-Clause", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/Kitware/CMake/releases/download/v4.0.2/cmake-4.0.2-windows-x86_64.zip", 9 | "hash": "SHA256:109ec7de10416d6d78991bab9714d2cb1ccb71d1b436dff42ec978dd283c29fc" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/Kitware/CMake/releases/download/v4.0.2/cmake-4.0.2-windows-arm64.zip", 13 | "hash": "SHA256:634d6bab01a639e314f4fb2fee0967c84c3a37e39b9b2c9455c2dff2deb6a6dc" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "bin\\cmake.exe", 19 | "bin\\cmake-gui.exe", 20 | "bin\\cmcldeps.exe", 21 | "bin\\cpack.exe", 22 | "bin\\ctest.exe" 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /bucket/curl.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Curl is a command-line tool for transferring data specified with URL syntax.", 3 | "version": "8.14.1", 4 | "homepage": "https://curl.se/", 5 | "license": "https://github.com/curl/curl/blob/master/COPYING", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://curl.se/windows/dl-8.14.1_1/curl-8.14.1_1-win64-mingw.zip", 9 | "hash": "SHA256:eef8ed31fccd4ed22da9c5469c31cf1355096c41f9246f48ca1aa8086c6cb5d6" 10 | }, 11 | "arm64": { 12 | "url": "https://curl.se/windows/dl-8.14.1_1/curl-8.14.1_1-win64a-mingw.zip", 13 | "hash": "SHA256:b9b33024e58348d76b8fd45c9ac11609d17cb6e6c9d3e0663d67c181b1b5721f" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "bin/curl.exe", 19 | "bin/curl-ca-bundle.crt" 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /bucket/delta.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A syntax-highlighter for git and diff output", 3 | "version": "0.18.2", 4 | "homepage": "https://github.com/dandavison/delta/", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/dandavison/delta/releases/download/0.18.2/delta-0.18.2-x86_64-pc-windows-msvc.zip", 9 | "hash": "SHA256:6ea59864091b4cfca89d9ee38388ff1a3ccdc8244b6e1cdd5201259de89b0b06" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "delta.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/deno.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A secure runtime for JavaScript and TypeScript.", 3 | "version": "2.3.5", 4 | "homepage": "https://github.com/denoland/deno", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/denoland/deno/releases/download/v2.3.5/deno-x86_64-pc-windows-msvc.zip", 9 | "hash": "SHA256:aeebfb104074b94b0fc35a52b306be3ad4275d0f871263b74d0740e9e27e56d2" 10 | } 11 | }, 12 | "extension": "zip", 13 | "force_delete": [ 14 | "${BAULK_VFS}\\.cache\\deno" 15 | ], 16 | "venv": { 17 | "category": "deno", 18 | "mkdir": [ 19 | "${BAULK_VFS}\\.cache\\deno" 20 | ], 21 | "path": [ 22 | "${BAULK_PKGROOT}" 23 | ], 24 | "env": [ 25 | "DENO_DIR=${BAULK_VFS}\\.cache\\deno" 26 | ] 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /bucket/difftastic.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A structural diff that understands syntax", 3 | "version": "0.63.0", 4 | "homepage": "https://github.com/Wilfred/difftastic", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/Wilfred/difftastic/releases/download/0.63.0/difft-x86_64-pc-windows-msvc.zip", 9 | "hash": "033ae31243152cd47f88ad892b56a840a218414d5f279de32374ff3a81f15119" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "difft.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/dmd.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "D is a general-purpose programming language with static typing, systems-level access, and C-like syntax", 3 | "version": "2.111.0", 4 | "homepage": "https://dlang.org/", 5 | "license": "BSL-1.0", 6 | "architecture": { 7 | "32bit": { 8 | "url": "https://downloads.dlang.org/releases/2.x/2.111.0/dmd.2.111.0.windows.7z", 9 | "hash": "SHA256:c26f7146718331e728716bda361ef7b65083ae853e36766294cc41661ab94010" 10 | } 11 | }, 12 | "extension": "7z", 13 | "venv": { 14 | "category": "dlang", 15 | "path": [ 16 | "${BAULK_PKGROOT}\\windows\\bin" 17 | ], 18 | "env": [ 19 | "BAULK_DLANG_VERSION=2.110.0" 20 | ] 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /bucket/duf.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Disk Usage/Free Utility (Linux, BSD, macOS \u0026 Windows)", 3 | "version": "0.8.1", 4 | "homepage": "https://github.com/muesli/duf", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/muesli/duf/releases/download/v0.8.1/duf_0.8.1_Windows_x86_64.zip", 9 | "hash": "SHA256:61cb50b541b30b6b66f20453d8795e6395454224e1609fa8454682fcf8931926" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/muesli/duf/releases/download/v0.8.1/duf_0.8.1_Windows_arm64.zip", 13 | "hash": "SHA256:1d8829b7f93dfe532bf29015b8826d6d384d6f25c751e9118a12b9ff63ae881a" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "duf.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/fd.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A simple, fast and user-friendly alternative to 'find'", 3 | "version": "10.2.0", 4 | "homepage": "https://github.com/sharkdp/fd", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/sharkdp/fd/releases/download/v10.2.0/fd-v10.2.0-x86_64-pc-windows-msvc.zip", 9 | "hash": "SHA256:92ac9e6b0a0c6ecdab638ffe210dc786403fff4c66373604cf70df27be45e4fe" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "fd.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/git.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Git is a modern distributed version control system focused on speed", 3 | "version": "2.49.0", 4 | "homepage": "https://git-scm.com/", 5 | "license": "GPL-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/git-for-windows/git/releases/download/v2.49.0.windows.1/MinGit-2.49.0-64-bit.zip", 9 | "hash": "SHA256:971cdee7c0feaa1e41369c46da88d1000a24e79a6f50191c820100338fb7eca5" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/git-for-windows/git/releases/download/v2.49.0.windows.1/MinGit-2.49.0-arm64.zip", 13 | "hash": "SHA256:847bbe519443cd24c716f490a769056a35f42474cafb757663e1dceca159e911" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "cmd\\git.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/go.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "An open source programming language that makes it easy to build simple, reliable, and efficient software.", 3 | "version": "1.24.3", 4 | "homepage": "https://golang.org/", 5 | "license": "BSD", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://go.dev/dl/go1.24.3.windows-amd64.zip", 9 | "hash": "SHA256:be9787cb08998b1860fe3513e48a5fe5b96302d358a321b58e651184fa9638b3" 10 | }, 11 | "arm64": { 12 | "url": "https://go.dev/dl/go1.24.3.windows-arm64.zip", 13 | "hash": "SHA256:eec9fa736056b54dd88ecb669db2bfad39b0c48f6f9080f036dfa1ca42dc4bb5" 14 | } 15 | }, 16 | "extension": "zip", 17 | "force_delete": [ 18 | "${BAULK_VFS}\\go", 19 | "${BAULK_VFS}\\Temp\\go-build" 20 | ], 21 | "venv": { 22 | "category": "golang", 23 | "mkdir": [ 24 | "${BAULK_VFS}\\Temp" 25 | ], 26 | "path": [ 27 | "${BAULK_PKGROOT}\\bin", 28 | "${BAULK_VFS}\\go\\bin" 29 | ], 30 | "env": [ 31 | "GOPATH=${BAULK_VFS}\\go", 32 | "GOENV=${BAULK_VFS}\\go\\env", 33 | "GOCACHE=${BAULK_VFS}\\Temp\\go-build", 34 | "GOTMPDIR=${BAULK_VFS}\\Temp", 35 | "GO111MODULE=on", 36 | "GO_PROXY=https://goproxy.io" 37 | ] 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /bucket/graalvm-jdk.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "GraalVM is a high-performance runtime that provides significant improvements in application performance and efficiency which is ideal for microservices", 3 | "version": "24.0.1", 4 | "homepage": "https://www.graalvm.org/", 5 | "license": "GPL", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-24.0.1/graalvm-community-jdk-24.0.1_windows-x64_bin.zip", 9 | "hash": "SHA256:27895bd51d39acaa6fe4b8c78fda02ccaad6e8c92404abf60aa052c07e5cb4fc" 10 | } 11 | }, 12 | "extension": "zip", 13 | "venv": { 14 | "category": "java", 15 | "path": [ 16 | "${BAULK_PKGROOT}\\bin" 17 | ], 18 | "env": [ 19 | "JAVA_HOME=${BAULK_PKGROOT}", 20 | "GRAALVM_HOME=${BAULK_PKGROOT}" 21 | ] 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /bucket/graalvm-jdk17.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "GraalVM is a high-performance runtime that provides significant improvements in application performance and efficiency which is ideal for microservices", 3 | "version": "17.0.12", 4 | "homepage": "https://www.graalvm.org/", 5 | "license": "GPL", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://download.oracle.com/graalvm/17/archive/graalvm-jdk-17.0.12_windows-x64_bin.zip", 9 | "hash": "SHA256:8b978e56dddc0edc60db99794b56975740d9c52293b31549cfc3f7516fc18b43" 10 | } 11 | }, 12 | "extension": "zip", 13 | "venv": { 14 | "category": "java", 15 | "path": [ 16 | "${BAULK_PKGROOT}\\bin" 17 | ], 18 | "env": [ 19 | "JAVA_HOME=${BAULK_PKGROOT}", 20 | "GRAALVM_HOME=${BAULK_PKGROOT}" 21 | ] 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /bucket/graphviz.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Graphviz is open source graph visualization software.", 3 | "version": "12.2.1", 4 | "homepage": "https://graphviz.org/", 5 | "license": "EPL-1.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/12.2.1/windows_10_cmake_Release_Graphviz-12.2.1-win64.zip", 9 | "hash": "SHA256:82c34e6a73b8158bee357d1c51aac08925edc8f4a9f517f591fb8df989405ad4" 10 | } 11 | }, 12 | "extension": "zip", 13 | "launchers": [ 14 | "bin\\acyclic.exe", 15 | "bin\\bcomps.exe", 16 | "bin\\ccomps.exe", 17 | "bin\\dijkstra.exe", 18 | "bin\\dot.exe", 19 | "bin\\gc.exe", 20 | "bin\\gml2gv.exe", 21 | "bin\\graphml2gv.exe", 22 | "bin\\gvcolor.exe", 23 | "bin\\gvgen.exe", 24 | "bin\\gvpack.exe", 25 | "bin\\gvpr.exe", 26 | "bin\\gxl2gv.exe", 27 | "bin\\mm2gv.exe", 28 | "bin\\nop.exe", 29 | "bin\\sccmap.exe", 30 | "bin\\tred.exe", 31 | "bin\\unflatten.exe" 32 | ] 33 | } 34 | -------------------------------------------------------------------------------- /bucket/grpcurl.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers", 3 | "version": "1.9.3", 4 | "homepage": "https://github.com/fullstorydev/grpcurl", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/fullstorydev/grpcurl/releases/download/v1.9.3/grpcurl_1.9.3_windows_x86_64.zip", 9 | "hash": "SHA256:895335dfa7be74803eeb5acf3ec5d3b06c1e9483fdda3c7622bdef9ad388f32a" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "grpcurl.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/heidisql.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "HeidiSQL is free software, and has the aim to be easy to learn. \"Heidi\" lets you see and edit data and structures from computers running one of the database systems MariaDB, MySQL, Microsoft SQL, PostgreSQL and SQLite. Invented in 2002 by Ansgar, HeidiSQL belongs to the most popular tools for MariaDB and MySQL worldwide.", 3 | "version": "12.10.0.7000", 4 | "homepage": "https://www.heidisql.com/", 5 | "license": "GPL-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://www.heidisql.com/downloads/releases/HeidiSQL_12.10_64_Portable.zip", 9 | "hash": "SHA256:a7b0e40acc85900ff5ca63769e702acaa06e81ae658b7958e1bc794ae635fd7a" 10 | } 11 | }, 12 | "extension": "zip", 13 | "launchers": [ 14 | "heidisql.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/helix.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A post-modern modal text editor", 3 | "version": "25.01.1", 4 | "homepage": "https://helix-editor.com", 5 | "license": "MPL-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/helix-editor/helix/releases/download/25.01.1/helix-25.01.1-x86_64-windows.zip", 9 | "hash": "SHA256:564055657cf24a4ebb0ef929ee2bc40d379431868e06fd82e41a0def01a5a320" 10 | } 11 | }, 12 | "links": [ 13 | "hx.exe" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /bucket/helm.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "The package manager for Kubernetes", 3 | "version": "3.18.2", 4 | "homepage": "https://helm.sh/", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://get.helm.sh/helm-v3.18.2-windows-amd64.zip", 9 | "hash": "SHA256:49fc2d74a351974ebf544f8252a4e43d7e5f9e0137472415393178c2d3996e9f" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "helm.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/hugescm.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "HugeSCM - A next generation cloud-based version control system", 3 | "version": "0.18.0", 4 | "homepage": "https://github.com/antgroup/hugescm", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/antgroup/hugescm/releases/download/v0.18.0/zeta-0.18.0-windows-amd64.zip", 9 | "hash": "SHA256:6a1879d0f708f89117d4817775d20caf3a67655b451b5b8596e7addc50d43b5b" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/antgroup/hugescm/releases/download/v0.18.0/zeta-0.18.0-windows-amd64.zip", 13 | "hash": "SHA256:b79ec34e0c8a8c9d7aa3ce75abea8f8e4a83100570b811403cbd4433af5788cd" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "bin\\zeta.exe", 19 | "bin\\zeta-mc.exe" 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /bucket/igrep.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Runs grep (ripgrep's library) and allows to interactively pick its results and open selected match in a text editor.", 3 | "version": "1.3.0", 4 | "homepage": "https://github.com/konradsz/igrep", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/konradsz/igrep/releases/download/v1.3.0/igrep-v1.3.0-x86_64-pc-windows-msvc.zip.zip", 9 | "hash": "SHA256:8ec75744a29a9eeb1a6aaaf0080b40a185420aa75884251dfd96c7c8a787ea7c" 10 | } 11 | }, 12 | "links": [ 13 | "ig.exe" 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /bucket/ilspy.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "ILSpy is the open-source .NET assembly browser and decompiler.", 3 | "version": "9.1.0.7988", 4 | "homepage": "https://github.com/icsharpcode/ILSpy", 5 | "license": "MIT", 6 | "architecture": { 7 | "arm64": { 8 | "url": "https://github.com/icsharpcode/ILSpy/releases/download/v9.1/ILSpy_binaries_9.1.0.7988-arm64.zip", 9 | "hash": "SHA256:395c6f5c516d54e5d9ae3b5ef434e169c323fe5287e4b27bf1635763a6495585" 10 | }, 11 | "64bit": { 12 | "url": "https://github.com/icsharpcode/ILSpy/releases/download/v9.1/ILSpy_binaries_9.1.0.7988-x64.zip", 13 | "hash": "SHA256:1e925a4ce4c79d68139a486da66c682e2191e51215188816f613866c7276fc55" 14 | } 15 | }, 16 | "extension": "zip", 17 | "launchers": [ 18 | "ILSpy.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/innoextract.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A tool to unpack installers created by Inno Setup.", 3 | "version": "1.9", 4 | "homepage": "https://constexpr.org/innoextract/", 5 | "license": "Zlib", 6 | "architecture": { 7 | "32bit": { 8 | "url": "https://constexpr.org/innoextract/files/innoextract-1.9/innoextract-1.9-windows.zip", 9 | "hash": "SHA256:6989342c9b026a00a72a38f23b62a8e6a22cc5de69805cf47d68ac2fec993065" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "innoextract.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/innounp.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Inno Setup Unpacker (Unicode)", 3 | "version": "2.64.4", 4 | "homepage": "https://www.rathlev-home.de/tools/prog-e.html#unpack", 5 | "license": "GPL", 6 | "architecture": { 7 | "32bit": { 8 | "url": "https://raw.githubusercontent.com/jrathlev/InnoUnpacker-Windows-GUI/refs/heads/master/innounp-2/bin/innounp-2.zip", 9 | "hash": "SHA256:9bcda3281d453ff08bf4184350e398c2f350ce350d5923b6616d5d5bb143657a" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "innounp.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/intermodal.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "User-friendly and featureful command-line BitTorrent metainfo utility", 3 | "version": "0.1.14", 4 | "homepage": "https://imdl.io/", 5 | "license": "CC0-1.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/casey/intermodal/releases/download/v0.1.14/imdl-v0.1.14-x86_64-pc-windows-msvc.zip", 9 | "hash": "SHA256:57809f155e15eaac01c4c2e06610ac2fb7258cabc9186834f49b063246d04f97" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "imdl.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/jom.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "jom is a clone of nmake", 3 | "version": "1.1.4", 4 | "homepage": "https://wiki.qt.io/Jom", 5 | "license": "GPL-3.0", 6 | "architecture": { 7 | "32bit": { 8 | "url": "https://download.qt.io/official_releases/jom/jom_1_1_4.zip", 9 | "hash": "SHA256:d533c1ef49214229681e90196ed2094691e8c4a0a0bef0b2c901debcb562682b" 10 | } 11 | }, 12 | "extension": "zip", 13 | "launchers": [ 14 | "jom.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/k9s.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "K9s - Kubernetes CLI To Manage Your Clusters In Style!", 3 | "version": "0.50.6", 4 | "homepage": "https://k9scli.io/", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/derailed/k9s/releases/download/v0.50.6/k9s_Windows_amd64.zip", 9 | "hash": "SHA256:cfa79324fa4f5710dec54d07f2d1661d44ea3bb8f3934eba929db6a51c6234dd" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/derailed/k9s/releases/download/v0.50.6/k9s_Windows_arm64.zip", 13 | "hash": "SHA256:1c8f2dd6dbfcfd92e7260b724a2363c5b1be7398fe4878b20257a7a9b8f71e48" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "k9s.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/kotlin-native.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Kotlin/Native is an LLVM backend for the Kotlin compiler, runtime implementation, and native code generation facility using the LLVM toolchain.", 3 | "version": "2.1.21", 4 | "homepage": "https://github.com/JetBrains/kotlin", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/JetBrains/kotlin/releases/download/v2.1.21/kotlin-native-prebuilt-windows-x86_64-2.1.21.zip", 9 | "hash": "SHA256:03301473bb9e68dadfdd265857a2a5913a147e700e345d32db73e0a21a2ffbfa" 10 | } 11 | }, 12 | "extension": "zip", 13 | "force_delete": [ 14 | "${BAULK_VFS}\\.konan" 15 | ], 16 | "venv": { 17 | "category": "kotlin", 18 | "dependencies": [ 19 | "zulu" 20 | ], 21 | "path": [ 22 | "${BAULK_PKGROOT}\\bin" 23 | ], 24 | "env": [ 25 | "KONAN_DATA_DIR=${BAULK_VFS}\\.konan" 26 | ] 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /bucket/kubectl.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "The package manager for Kubernetes", 3 | "version": "1.33.1", 4 | "homepage": "https://github.com/kubernetes/kubectl", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://dl.k8s.io/release/v1.33.1/kubernetes-client-windows-amd64.tar.gz", 9 | "hash": "SHA256:1fdc7994848304056092002815315d86cdbf9386946427eccccb9999ee21c25c" 10 | }, 11 | "arm64": { 12 | "url": "https://dl.k8s.io/release/v1.33.1/kubernetes-client-windows-arm64.tar.gz", 13 | "hash": "SHA256:61f0c5d0e2210143aabc28df8a37c9373866efd76c7a6b80f2f5377808875f2f" 14 | } 15 | }, 16 | "extension": "tar", 17 | "links": [ 18 | "bin/kubectl.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/ldc.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "LDC is LLVM based D-language compiler", 3 | "version": "1.40.1", 4 | "homepage": "https://github.com/ldc-developers/ldc", 5 | "license": "BSD-3-Clause", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/ldc-developers/ldc/releases/download/v1.40.1/ldc2-1.40.1-windows-x64.7z", 9 | "hash": "SHA256:6f3333e6c8b5650be0af67795b000d6ea588ccfecda987986c795ec4bd175e85" 10 | } 11 | }, 12 | "extension": "7z", 13 | "venv": { 14 | "category": "dlang", 15 | "path": [ 16 | "${BAULK_PKGROOT}\\bin" 17 | ], 18 | "env": [ 19 | "BAULK_LDC_VERSION=1.28.0" 20 | ] 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /bucket/less.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A terminal pager program used to view (but not change) the contents of a text file one screen at a time, similar to the 'more' command.", 3 | "version": "674", 4 | "homepage": "https://www.greenwoodsoftware.com/less/", 5 | "license": "GPL-3.0-only|BSD-3-Clause", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/baulk/less-windows/releases/download/v674/less-674-x64.zip", 9 | "hash": "SHA256:4638dbbead5ed25fdfaa15c9529eafcedec0da56abd47bcf7a1cb843fe1a347e" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/baulk/less-windows/releases/download/v674/less-674-arm64.zip", 13 | "hash": "SHA256:a4d9c344596e73513342f09f2cb1e01aef349b145b479e0887a02f889e3a35f2" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "less.exe", 19 | "lesskey.exe" 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /bucket/msjdk.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Microsoft Build of OpenJDK™", 3 | "version": "21.0.6", 4 | "homepage": "https://www.microsoft.com/openjdk", 5 | "license": "GPL-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://aka.ms/download-jdk/microsoft-jdk-21.0.6-windows-x64.zip", 9 | "hash": "SHA256:fa8f1eb53e9062895dcf7547abb22d7a96db40e1be1565bc3a61c2e399dbda03" 10 | }, 11 | "arm64": { 12 | "url": "https://aka.ms/download-jdk/microsoft-jdk-21.0.6-windows-aarch64.zip", 13 | "hash": "SHA256:a612be6b689b4906fa1825e522c2c58b9598e9a8ae93226b62a9bfeb90bbad79" 14 | } 15 | }, 16 | "extension": "zip", 17 | "venv": { 18 | "category": "java", 19 | "path": [ 20 | "${BAULK_PKGROOT}\\bin" 21 | ], 22 | "env": [ 23 | "JAVA_HOME=${BAULK_PKGROOT}" 24 | ] 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /bucket/nasm.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "NASM - The Netwide Assembler", 3 | "version": "2.17.0-rc1", 4 | "homepage": "https://www.nasm.us", 5 | "license": "BSD-2-Clause", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://www.nasm.us/pub/nasm/snapshots/20241104/win64/nasm-2.17rc0-20241104-win64.zip", 9 | "hash": "SHA256:c567bf14ea718ed37c4182dc0be661357ecb75b7c2996faa43b15af9131257a5" 10 | } 11 | }, 12 | "extension": "zip", 13 | "launchers": [ 14 | "nasm.exe", 15 | "ndisasm.exe" 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /bucket/neovim.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Neovim - Vim-fork focused on extensibility and usability", 3 | "version": "0.11.2", 4 | "homepage": "https://neovim.io/", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/neovim/neovim/releases/download/v0.11.2/nvim-win64.zip", 9 | "hash": "SHA256:dfa66afc95422b7c4a0f8ae330f30a00dbb8e9848993d7bfde8e2e85be30de13" 10 | } 11 | }, 12 | "force_delete": [ 13 | "${LOCALAPPDATA}\\nvim", 14 | "${LOCALAPPDATA}\\nvim-data" 15 | ], 16 | "extension": "zip", 17 | "launchers": [ 18 | "bin\\nvim.exe", 19 | "bin\\xxd.exe" 20 | ] 21 | } 22 | -------------------------------------------------------------------------------- /bucket/ninja.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Ninja is a small build system with a focus on speed.", 3 | "version": "1.12.1", 4 | "homepage": "https://ninja-build.org/", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/ninja-build/ninja/releases/download/v1.12.1/ninja-win.zip", 9 | "hash": "SHA256:f550fec705b6d6ff58f2db3c374c2277a37691678d6aba463adcbb129108467a" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/ninja-build/ninja/releases/download/v1.12.1/ninja-winarm64.zip", 13 | "hash": "SHA256:79c96a50e0deafec212cfa85aa57c6b74003f52d9d1673ddcd1eab1c958c5900" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "ninja.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/nmap.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Network exploration and security auditing utility.", 3 | "version": "7.97", 4 | "homepage": "https://nmap.org/", 5 | "license": "GPL-2.0", 6 | "architecture": { 7 | "32bit": { 8 | "url": "https://nmap.org/dist/nmap-7.97-setup.exe", 9 | "hash": "SHA256:d953719622808d1f58fb65ad2ddf3e7d03e33f1105c6d422b76e420ad6e1f45f" 10 | } 11 | }, 12 | "extension": "7z", 13 | "launchers": [ 14 | "nmap.exe", 15 | "ncat.exe", 16 | "nping.exe" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /bucket/nodejs-lts.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "As an asynchronous event driven JavaScript runtime, Node is designed to build scalable network applications. (LTS)", 3 | "version": "22.16.0", 4 | "homepage": "https://nodejs.org", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://nodejs.org/dist/v22.16.0/node-v22.16.0-win-x64.zip", 9 | "hash": "SHA256:21c2d9735c80b8f86dab19305aa6a9f6f59bbc808f68de3eef09d5832e3bfbbd" 10 | }, 11 | "arm64": { 12 | "url": "https://nodejs.org/dist/v22.16.0/node-v22.16.0-win-arm64.zip", 13 | "hash": "SHA256:31e885dcd06355f67b4be8cca86464270d83d0f5b8d4e3d4369c16ed22a5f4fa" 14 | } 15 | }, 16 | "extension": "zip", 17 | "venv": { 18 | "category": "node", 19 | "path": [ 20 | "${BAULK_PKGROOT}", 21 | "${BAULK_VFS}\\.npm-lts" 22 | ], 23 | "env": [ 24 | "NPM_CONFIG_PREFIX=${BAULK_VFS}\\.npm-lts" 25 | ] 26 | }, 27 | "force_delete": [ 28 | "${BAULK_VFS}\\.npm-lts" 29 | ] 30 | } 31 | -------------------------------------------------------------------------------- /bucket/nodejs.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "As an asynchronous event driven JavaScript runtime, Node is designed to build scalable network applications.", 3 | "version": "24.1.0", 4 | "homepage": "https://nodejs.org", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://nodejs.org/dist/v24.1.0/node-v24.1.0-win-x64.zip", 9 | "hash": "SHA256:81d6774f5c1581c7ddd32fb25cf6138f68755dfbb245025d05a249aafa35ea9d" 10 | }, 11 | "arm64": { 12 | "url": "https://nodejs.org/dist/v24.1.0/node-v24.1.0-win-arm64.zip", 13 | "hash": "SHA256:aa304f30f1420b4ba0067fe18949b67c56a7e88ceb86a7a76dcde24b63a295f3" 14 | } 15 | }, 16 | "extension": "zip", 17 | "force_delete": [ 18 | "${BAULK_VFS}\\.npm" 19 | ], 20 | "venv": { 21 | "category": "node", 22 | "mkdir": [ 23 | "${BAULK_VFS}\\.npm" 24 | ], 25 | "path": [ 26 | "${BAULK_PKGROOT}", 27 | "${BAULK_VFS}\\.npm" 28 | ], 29 | "env": [ 30 | "NPM_CONFIG_PREFIX=${BAULK_VFS}\\.npm" 31 | ] 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /bucket/nsis.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "NSIS (Nullsoft Scriptable Install System) is a professional open source system to create Windows installers.", 3 | "version": "3.11", 4 | "homepage": "https://sourceforge.net/projects/nsis/", 5 | "license": "Zlib", 6 | "architecture": { 7 | "32bit": { 8 | "url": "https://prdownloads.sourceforge.net/nsis/nsis-3.11.zip", 9 | "hash": "SHA256:c7d27f780ddb6cffb4730138cd1591e841f4b7edb155856901cdf5f214394fa1" 10 | } 11 | }, 12 | "extension": "zip", 13 | "launchers": [ 14 | "makensis.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/nu.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A modern shell written in Rust", 3 | "version": "0.104.1", 4 | "homepage": "https://www.nushell.sh/", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/nushell/nushell/releases/download/0.104.1/nu-0.104.1-x86_64-pc-windows-msvc.zip", 9 | "hash": "SHA256:d98ecf68ccb2b0a7a233f72bb5ed01c1c80a39724e57a8ed05837d7d50a5a060" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/nushell/nushell/releases/download/0.104.1/nu-0.104.1-aarch64-pc-windows-msvc.zip", 13 | "hash": "SHA256:7c078a0efc0caf8a9f6e67b79c9ba9af38925a411edbc952f3cae7a40d1b5824" 14 | } 15 | }, 16 | "extension": "zip", 17 | "force_delete": [ 18 | "${APPDATA}\\nushell", 19 | "${LOCALAPPDATA}\\nushell" 20 | ], 21 | "launchers": [ 22 | "nu.exe" 23 | ] 24 | } 25 | 26 | -------------------------------------------------------------------------------- /bucket/nuget.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "NuGet is the package manager for .NET. The NuGet client tools provide the ability to produce and consume packages. ", 3 | "version": "6.14.0", 4 | "homepage": "https://nuget.org/", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "32bit": { 8 | "url": "https://dist.nuget.org/win-x86-commandline/v6.14.0/nuget.exe", 9 | "hash": "SHA256:92dbed160ddee0f64b901e907439e021211b428e57c089ecc12fc38dcc4bd9a5" 10 | } 11 | }, 12 | "extension": "exe", 13 | "links": [ 14 | "nuget.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/openjdk.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Official production-ready open-source builds of OpenJDK", 3 | "version": "24.0.0", 4 | "homepage": "https://openjdk.java.net/", 5 | "license": "GPL-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://download.java.net/java/GA/jdk24/1f9ff9062db4449d8ca828c504ffae90/36/GPL/openjdk-24_windows-x64_bin.zip", 9 | "hash": "SHA256:11d1d9f6ac272d5361c8a0bef01894364081c7fb1a6914c2ad2fc312ae83d63b" 10 | } 11 | }, 12 | "extension": "zip", 13 | "venv": { 14 | "category": "java", 15 | "path": [ 16 | "${BAULK_PKGROOT}\\bin" 17 | ], 18 | "env": [ 19 | "JAVA_HOME=${BAULK_PKGROOT}" 20 | ] 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /bucket/openjdk8.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "AdoptOpenJDK 8 with Oracle HotSpot JVM", 3 | "version": "8.442.6", 4 | "homepage": "https://adoptium.net/", 5 | "license": "GPL-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/adoptium/temurin8-binaries/releases/download/jdk8u442-b06/OpenJDK8U-jdk_x64_windows_hotspot_8u442b06.zip", 9 | "uhash": "SHA256:ffe22d16a1ea6fe709a089f3472fedb783470b879634b26b32424e40bbd00b09" 10 | } 11 | }, 12 | "extension": "zip", 13 | "venv": { 14 | "category": "java", 15 | "path": [ 16 | "${BAULK_PKGROOT}\\bin" 17 | ], 18 | "env": [ 19 | "JAVA_HOME=${BAULK_PKGROOT}" 20 | ] 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /bucket/ov.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Feature-rich terminal-based text viewer", 3 | "version": "0.41.0", 4 | "homepage": "https://noborus.github.io/ov", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/noborus/ov/releases/download/v0.41.0/ov_0.41.0_windows_amd64.zip", 9 | "hash": "SHA256:9881ecdc05432fef6cac3d72f64d0ddc527197453daea0ff2c641adca2ed32d7" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/noborus/ov/releases/download/v0.41.0/ov_0.41.0_windows_arm64.zip", 13 | "hash": "SHA256:e8acebf54177bc448f80d77e0be6c8b25645150bfe99969bc73c1fb6e3102488" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "ov.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/perl.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Perl 5 is a highly capable, feature-rich programming language.", 3 | "version": "5.40.2.1", 4 | "homepage": "https://www.perl.org/", 5 | "license": "GPL-1.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/StrawberryPerl/Perl-Dist-Strawberry/releases/download/SP_54021_64bit_UCRT/strawberry-perl-5.40.2.1-64bit-portable.zip", 9 | "hash": "SHA256:7707700d5ad027773b775134fe48cd9610abf221433fcfb68c8eb0ec9c6fde8c" 10 | } 11 | }, 12 | "extension": "zip", 13 | "launchers": [ 14 | "perl\\bin\\perl.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/procs.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A modern replacement for ps written in Rust", 3 | "version": "0.14.10", 4 | "homepage": "https://github.com/dalance/procs", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/dalance/procs/releases/download/v0.14.10/procs-v0.14.10-x86_64-windows.zip", 9 | "hash": "SHA256:5b9abab9faf47897a2076ae8279f4a1eba4436f28c0337ea3152993b0d1ba19a" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "procs.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/protobuf.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Protocol Buffer Compiler", 3 | "version": "31.1", 4 | "homepage": "https://developers.google.com/protocol-buffers/", 5 | "license": "https://github.com/protocolbuffers/protobuf/blob/master/LICENSE", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/google/protobuf/releases/download/v31.1/protoc-31.1-win64.zip", 9 | "hash": "SHA256:70381b116ab0d71cb6a5177d9b17c7c13415866603a0fd40d513dafe32d56c35" 10 | } 11 | }, 12 | "extension": "zip", 13 | "launchers": [ 14 | "bin\\protoc.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/putty.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "PuTTY: a free SSH and Telnet client.", 3 | "version": "0.83.0", 4 | "homepage": "https://www.chiark.greenend.org.uk/~sgtatham/putty/", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://the.earth.li/~sgtatham/putty/0.83/w64/putty.zip", 9 | "hash": "sha512:78160664fb14831a8d9d99c0221df8ba7c23f7f65fc5a707d3cb7f9245fda9a381f0b89ed3b79bf7984252d908836948d7492deb3f5fd8c3d3d4838a691ba3d4" 10 | }, 11 | "arm64": { 12 | "url": "https://the.earth.li/~sgtatham/putty/0.83/wa64/putty.zip", 13 | "hash": "sha512:a8e7c1dfd98c3a359fea61042fdca48ed3ef7f4b9597bf45d085489ab0097208991d420890aec59d277252b78d951da479a0898c244358a8c99fe4189ff33cdb" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "putty.exe", 19 | "puttygen.exe", 20 | "psftp.exe", 21 | "pscp.exe", 22 | "plink.exe", 23 | "pageant.exe" 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /bucket/python.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Python is a programming language. (Embedded Distribution)", 3 | "version": "3.13.4", 4 | "homepage": "https://www.python.org/", 5 | "license": "Python-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://www.python.org/ftp/python/3.13.4/python-3.13.4-embed-amd64.zip", 9 | "hash": "SHA256:514ca14ec356ecb7749a7c0a1ef1eac9fd9c67d57af4812cb1f0822b0d3a85e8" 10 | }, 11 | "arm64": { 12 | "url": "https://www.python.org/ftp/python/3.13.4/python-3.13.4-embed-arm64.zip", 13 | "hash": "SHA256:3ad028e6cf16dc396734d6a0d685bc80c5e750dbe2922ec040150a00f9f0fd41" 14 | } 15 | }, 16 | "extension": "zip", 17 | "launchers": [ 18 | "python.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/radare2.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "UNIX-like reverse engineering framework and command-line toolset", 3 | "version": "5.9.8", 4 | "homepage": "https://www.radare.org/", 5 | "license": "LGPL-3.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/radareorg/radare2/releases/download/5.9.8/radare2-5.9.8-w64.zip", 9 | "hash": "SHA256:0f4fd96967ddf3747277e37bb93b23493b0cb875acdc8303ab7e285edbe178de" 10 | } 11 | }, 12 | "extension": "zip", 13 | "launchers": [ 14 | "bin\\radare2.exe", 15 | "bin\\r2agent.exe", 16 | "bin\\rabin2.exe", 17 | "bin\\radare2.exe", 18 | "bin\\radiff2.exe", 19 | "bin\\rafind2.exe", 20 | "bin\\ragg2.exe", 21 | "bin\\rahash2.exe", 22 | "bin\\rarun2.exe", 23 | "bin\\rasign2.exe", 24 | "bin\\rasm2.exe", 25 | "bin\\ravc2.exe", 26 | "bin\\rax2.exe" 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /bucket/ripgrep.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "ripgrep recursively searches directories for a regex pattern.", 3 | "version": "14.1.1", 4 | "homepage": "https://github.com/BurntSushi/ripgrep", 5 | "license": "Public Domain", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/BurntSushi/ripgrep/releases/download/14.1.1/ripgrep-14.1.1-x86_64-pc-windows-msvc.zip", 9 | "hash": "SHA256:d0f534024c42afd6cb4d38907c25cd2b249b79bbe6cc1dbee8e3e37c2b6e25a1" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "rg.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/rust.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A language empowering everyone to build reliable and efficient software. (MSVC toolchain)", 3 | "version": "1.87.0", 4 | "homepage": "https://www.rust-lang.org/", 5 | "license": "MIT,Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://static.rust-lang.org/dist/rust-1.87.0-x86_64-pc-windows-msvc.msi", 9 | "hash": "SHA256:e1721bbf28b580dc069942b24caa88a9de7cf79b8c6d6f037aaa4e3ba2e94ca8" 10 | }, 11 | "arm64": { 12 | "url": "https://static.rust-lang.org/dist/rust-1.87.0-aarch64-pc-windows-msvc.msi", 13 | "hash": "SHA256:d932fa3f5ff7db958325c483600f29862e112c0ebffddc32630b01f7c0ea7d41" 14 | } 15 | }, 16 | "extension": "msi", 17 | "force_delete": [ 18 | "${BAULK_VFS}\\.cargo" 19 | ], 20 | "venv": { 21 | "category": "rust", 22 | "path": [ 23 | "${BAULK_PKGROOT}\\bin", 24 | "${BAULK_VFS}\\.cargo\\bin" 25 | ], 26 | "env": [ 27 | "CARGO_HOME=${BAULK_VFS}\\.cargo", 28 | "CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse" 29 | ] 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /bucket/scc.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Sloc Cloc and Code (scc).", 3 | "version": "3.5.0", 4 | "homepage": "https://github.com/boyter/scc/", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/boyter/scc/releases/download/v3.5.0/scc_Windows_x86_64.zip", 9 | "hash": "SHA256:9ce15936440f1680bd133905c9f6c99a5d258bcea6f73fc372c3f8b4b888200f" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/boyter/scc/releases/download/v3.5.0/scc_Windows_arm64.zip", 13 | "hash": "SHA256:b61b135ccc5282321c41db2170121b94215b9d42951160ddad406b278b5ca318" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "scc.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/shfmt.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A shell formatter.", 3 | "version": "3.11.0", 4 | "homepage": "https://github.com/mvdan/sh/", 5 | "license": "BSD 3-Clause", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/mvdan/sh/releases/download/v3.11.0/shfmt_v3.11.0_windows_amd64.exe#/shfmt.exe", 9 | "hash": "SHA256:d11a0880588304496065110cb67ce2375cfcd5433e76dec505ce1fa21adf47cc" 10 | } 11 | }, 12 | "extension": "exe", 13 | "links": [ 14 | "shfmt.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/swigwin.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Simplified Wrapper and Interface Generator", 3 | "version": "4.3.0", 4 | "homepage": "https://www.swig.org/download.html", 5 | "license": "GPL-3.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "http://prdownloads.sourceforge.net/swig/swigwin-4.3.0.zip", 9 | "hash": "SHA256:a6de6891a213ade0f993ec43d8737c3e13d9f4d6ce544a417407ade0eeb7976d" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "swig.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/tokei.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Tokei is a program that displays statistics about your code.", 3 | "version": "12.1.2", 4 | "homepage": "https://github.com/XAMPPRocky/tokei/", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "32bit": { 8 | "url": "https://github.com/XAMPPRocky/tokei/releases/download/v12.1.2/tokei-i686-pc-windows-msvc.exe", 9 | "hash": "SHA256:451219f8384301293f36fa04abdb50fb3a95fddb0bc10efff9c4496d1ed0817d" 10 | }, 11 | "64bit": { 12 | "url": "https://github.com/XAMPPRocky/tokei/releases/download/v12.1.2/tokei-x86_64-pc-windows-msvc.exe", 13 | "hash": "SHA256:b1d6c4b18f5fa238bd2c6e47caa65a7a3e4a1bd0de6df0b7c19c8083c941f57b" 14 | } 15 | }, 16 | "extension": "exe", 17 | "links": [ 18 | "tokei.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/unrar.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Decompress RAR files.", 3 | "version": "7.1.6", 4 | "homepage": "https://www.rarlab.com/", 5 | "license": "https://github.com/baulk/unrar/blob/master/LICENSE", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/baulk/unrar/releases/download/v7.1.6/unrar-7.1.6-win-x64.zip", 9 | "hash": "SHA256:e9c9efa963f4222bae09248d3630bfa7efacb1def1bcc02823e6805f68115a41" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/baulk/unrar/releases/download/v7.1.6/unrar-7.1.6-win-arm64.zip", 13 | "hash": "SHA256:404cc6107be7c8698ec58b6087bbd4a3508d2aafb3901dbf25793427e4201e8a" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "bin/unrar.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/vswhere.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Visual Studio Locator.", 3 | "version": "3.1.7", 4 | "homepage": "https://github.com/microsoft/vswhere/", 5 | "license": "MIT", 6 | "architecture": { 7 | "32bit": { 8 | "url": "https://github.com/microsoft/vswhere/releases/download/3.1.7/vswhere.exe", 9 | "hash": "SHA256:c54f3b7c9164ea9a0db8641e81ecdda80c2664ef5a47c4191406f848cc07c662" 10 | } 11 | }, 12 | "extension": "exe", 13 | "links": [ 14 | "vswhere.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/watchexec.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Execute commands in response to file modifications.", 3 | "version": "2.3.2", 4 | "homepage": "https://github.com/watchexec/watchexec", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/watchexec/watchexec/releases/download/v2.3.2/watchexec-2.3.2-x86_64-pc-windows-msvc.zip", 9 | "hash": "246f6b621414fe5b2b49652a2da279a9fc1de1f8de8e4c2d2067a663d7e671e5" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "watchexec.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/wget.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A command-line utility for retrieving files using HTTP, HTTPS and FTP protocols.", 3 | "version": "2.1.0", 4 | "homepage": "https://www.gnu.org/software/wget/", 5 | "license": "GPL-3.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/rockdaboot/wget2/releases/download/v2.1.0/wget2.exe", 9 | "hash": "SHA256:aad2b280c0f54741a1e5a4b7be99fc48cf39a7fc21827d5ec69860b9e02e9f28" 10 | } 11 | }, 12 | "extension": "exe", 13 | "links": [ 14 | "wget2.exe@wget.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/wincurl.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Curl is a command-line tool for transferring data specified with URL syntax. (msvc flavor)", 3 | "version": "8.14.1", 4 | "homepage": "https://github.com/fcharlie/wincurl/", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/fcharlie/wincurl/releases/download/8.14.1/wincurl-win64-8.14.1.zip", 9 | "hash": "SHA256:6fd163ee869b2547a49f50a6feb336c82fea01b4c8c66fe11b35cceecd3d95bb" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/fcharlie/wincurl/releases/download/8.14.1/wincurl-arm64-8.14.1.zip", 13 | "hash": "SHA256:5ac30e779b94eb89f1022bde712f4ff2304a51d0a563ce1eb472dc7b95d62a12" 14 | } 15 | }, 16 | "extension": "zip", 17 | "launchers": [ 18 | "bin/curl.exe@wincurl.exe" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /bucket/wsudo.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Run the program with the specified permission level.", 3 | "version": "5.1.0", 4 | "homepage": "https://github.com/M2Team/Privexec/", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/M2Team/Privexec/releases/download/5.1.0/Privexec-5.1.0-win-x64.zip", 9 | "hash": "SHA256:ce8a45f602f849cd6202ecc5121ceea6b6c9cc0d78d61025d46bcc9a32f2b2b2" 10 | }, 11 | "arm64": { 12 | "url": "https://github.com/M2Team/Privexec/releases/download/5.1.0/Privexec-5.1.0-win-arm64.zip", 13 | "hash": "SHA256:997ec271339a841c2ffebed94a44bcc7b8baf25d26f0278d4e2f99a839644376" 14 | } 15 | }, 16 | "extension": "zip", 17 | "links": [ 18 | "AppExec.exe", 19 | "Privexec.exe", 20 | "wsudo.exe" 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /bucket/xmake.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "XMake is an a cross-platform build utility based on lua", 3 | "version": "2.9.9", 4 | "homepage": "https://xmake.io/", 5 | "license": "Apache-2.0", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/xmake-io/xmake/releases/download/v2.9.9/xmake-v2.9.9.win64.zip", 9 | "hash": "SHA256:1bdde27785faafc69a7a117996a932c73ca8ec8a612ce4d885ba71dfb48c2084" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "xmake.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/zola.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "A fast static site generator in a single binary with everything built-in.", 3 | "version": "0.20.0", 4 | "homepage": "https://www.getzola.org/", 5 | "license": "MIT", 6 | "architecture": { 7 | "64bit": { 8 | "url": "https://github.com/getzola/zola/releases/download/v0.20.0/zola-v0.20.0-x86_64-pc-windows-msvc.zip", 9 | "hash": "25cd5082b6717fe50fd1351a4867ece6d898211a9bf37b58180c7b4013f9e061" 10 | } 11 | }, 12 | "extension": "zip", 13 | "links": [ 14 | "zola.exe" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /bucket/zulu.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Zulu is certified build of OpenJDK", 3 | "version": "24.28.83", 4 | "homepage": "https://www.azul.com/", 5 | "architecture": { 6 | "64bit": { 7 | "url": "https://cdn.azul.com/zulu/bin/zulu24.28.83-ca-jdk24.0.0-win_x64.zip", 8 | "hash": "SHA256:35f9a76f68009a829681e7e5f34d565634cdc7169a4fe4e66f04b327cb9c71ff" 9 | } 10 | }, 11 | "extension": "zip", 12 | "venv": { 13 | "category": "java", 14 | "path": [ 15 | "${BAULK_PKGROOT}\\bin" 16 | ], 17 | "env": [ 18 | "JAVA_HOME=${BAULK_PKGROOT}" 19 | ] 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Baulk official bucket", 3 | "name": "baulk", 4 | "id": "85c073ad-f473-4959-b655-1e5b232d46d7", 5 | "url": "https://github.com/baulk/bucket", 6 | "mirrors": [ 7 | "https://gitee.com/baulk/bucket.git" 8 | ] 9 | } 10 | --------------------------------------------------------------------------------