mirror of
https://git.sr.ht/~goorzhel/turboprop
synced 2024-12-15 17:50:52 +00:00
dc3060aa30
It doesn't pay to be strict about release module arity.
11 lines
410 B
Nix
11 lines
410 B
Nix
{lib, ...}: {
|
|
builder = lib.builders.derivation;
|
|
args = {
|
|
src = lib.fetchers.remoteYAMLFile rec {
|
|
version = "0.8.1";
|
|
url = "https://github.com/kubernetes-sigs/gateway-api/releases/download/v${version}/experimental-install.yaml";
|
|
hash = "sha256-rLLBaLkNKOqTy2sg6XcAzX122lgPRXYESq0kAeqsKa4=";
|
|
# hash = "sha256-bGAdzteHKpQNdvpmeuEmunGMtMbblw0Lq0kSjswRkqM="; # v1.0.0
|
|
};
|
|
};
|
|
}
|