mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
77fb5441bf
* graphene-hardened-malloc: add updateScript * graphene-hardened-malloc: 2024040900 -> 2024120400
11 lines
318 B
Bash
Executable File
11 lines
318 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell --pure -i bash -p bash cacert curl common-updater-scripts
|
|
# shellcheck shell=bash
|
|
set -eu -o pipefail
|
|
|
|
host="https://releases.grapheneos.org"
|
|
read -ra metadata <<< "$(curl -s "$host/caiman-stable")"
|
|
version=${metadata[0]}
|
|
|
|
update-source-version graphene-hardened-malloc "$version"
|