summary refs log tree commit diff
path: root/pkgs/development/libraries/vulkan-headers/update.sh
blob: 7f6292ed23b74b7f0e0705c609e5ab6e32442114 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p nix-update

set -euf -o pipefail

V_PACKAGES=(
    "vulkan-headers"
    "vulkan-loader"
    "vulkan-validation-layers"
    "vulkan-tools"
    "vulkan-tools-lunarg"
    "vulkan-extension-layer"
    "vulkan-utility-libraries"
)

SDK_PACKAGES=(
    "spirv-headers"
    "spirv-cross"
    "spirv-tools"
)

nix-update glslang --version-regex '(\d+\.\d+\.\d+)' --commit

for P in "${V_PACKAGES[@]}"; do
    nix-update "$P" --version-regex "(?:v)(.*)" --commit
done

for P in "${SDK_PACKAGES[@]}"; do
    nix-update "$P" --version-regex "(?:sdk-)(.*)" --commit
done