2022-12-03T04:55:09 fastly 4.3.0 -> 4.4.0 https://github.com/fastly/cli/releases 2022-12-03T04:55:11 attrpath: fastly 2022-12-03T04:55:11 Checking auto update branch... 2022-12-03T04:55:11 No auto update branch exists 2022-12-03T04:55:12 Old version 4.3.0" not present in master derivation file with contents: { lib, fetchurl, fetchFromGitHub, installShellFiles, buildGoModule, go }: buildGoModule rec { pname = "fastly"; version = "4.4.0"; src = fetchFromGitHub { owner = "fastly"; repo = "cli"; rev = "v${version}"; sha256 = "sha256-i3X4VetosUD60QCztJFFRWwHb4kCIaB8MjrT8gA4dYw="; # The git commit is part of the `fastly version` original output; # leave that output the same in nixpkgs. Use the `.git` directory # to retrieve the commit SHA, and remove the directory afterwards, # since it is not needed after that. leaveDotGit = true; postFetch = '' cd "$out" git rev-parse --short HEAD > $out/COMMIT find "$out" -name .git -print0 | xargs -0 rm -rf ''; }; subPackages = [ "cmd/fastly" ]; vendorSha256 = "sha256-zilgzfPD7HmHt0/u94JLaY6NPvn1JjXFu1K2YO0tF9M="; nativeBuildInputs = [ installShellFiles ]; # Flags as provided by the build automation of the project: # https://github.com/fastly/cli/blob/7844f9f54d56f8326962112b5534e5c40e91bf09/.goreleaser.yml#L14-L18 ldflags = [ "-s" "-w" "-X github.com/fastly/cli/pkg/revision.AppVersion=v${version}" "-X github.com/fastly/cli/pkg/revision.Environment=release" "-X github.com/fastly/cli/pkg/revision.GoHostOS=${go.GOHOSTOS}" "-X github.com/fastly/cli/pkg/revision.GoHostArch=${go.GOHOSTARCH}" ]; preBuild = let cliConfigToml = fetchurl { url = "https://web.archive.org/web/20221104122906/https://developer.fastly.com/api/internal/cli-config"; sha256 = "sha256-BHsUWrMp//X95gcB+WbD/nfyduZUkH8jHXk3CfOBAhg="; }; in '' cp ${cliConfigToml} ./pkg/config/config.toml ldflags+=" -X github.com/fastly/cli/pkg/revision.GitCommit=$(cat COMMIT)" ''; postInstall = '' export HOME="$(mktemp -d)" installShellCompletion --cmd fastly \ --bash <($out/bin/fastly --completion-script-bash) \ --zsh <($out/bin/fastly --completion-script-zsh) ''; meta = with lib; { description = "Command line tool for interacting with the Fastly API"; license = licenses.asl20; homepage = "https://github.com/fastly/cli"; maintainers = with maintainers; [ ereslibre shyim ]; }; } 2022-12-03T14:07:09 fastly 4.3.0 -> 4.4.1 https://repology.org/metapackage/fastly/versions 2022-12-03T14:07:11 attrpath: fastly 2022-12-03T14:07:11 Checking auto update branch... 2022-12-03T14:07:11 No auto update branch exists 2022-12-03T14:07:12 Old version 4.3.0" not present in master derivation file with contents: { lib, fetchurl, fetchFromGitHub, installShellFiles, buildGoModule, go }: buildGoModule rec { pname = "fastly"; version = "4.4.0"; src = fetchFromGitHub { owner = "fastly"; repo = "cli"; rev = "v${version}"; sha256 = "sha256-i3X4VetosUD60QCztJFFRWwHb4kCIaB8MjrT8gA4dYw="; # The git commit is part of the `fastly version` original output; # leave that output the same in nixpkgs. Use the `.git` directory # to retrieve the commit SHA, and remove the directory afterwards, # since it is not needed after that. leaveDotGit = true; postFetch = '' cd "$out" git rev-parse --short HEAD > $out/COMMIT find "$out" -name .git -print0 | xargs -0 rm -rf ''; }; subPackages = [ "cmd/fastly" ]; vendorSha256 = "sha256-zilgzfPD7HmHt0/u94JLaY6NPvn1JjXFu1K2YO0tF9M="; nativeBuildInputs = [ installShellFiles ]; # Flags as provided by the build automation of the project: # https://github.com/fastly/cli/blob/7844f9f54d56f8326962112b5534e5c40e91bf09/.goreleaser.yml#L14-L18 ldflags = [ "-s" "-w" "-X github.com/fastly/cli/pkg/revision.AppVersion=v${version}" "-X github.com/fastly/cli/pkg/revision.Environment=release" "-X github.com/fastly/cli/pkg/revision.GoHostOS=${go.GOHOSTOS}" "-X github.com/fastly/cli/pkg/revision.GoHostArch=${go.GOHOSTARCH}" ]; preBuild = let cliConfigToml = fetchurl { url = "https://web.archive.org/web/20221104122906/https://developer.fastly.com/api/internal/cli-config"; sha256 = "sha256-BHsUWrMp//X95gcB+WbD/nfyduZUkH8jHXk3CfOBAhg="; }; in '' cp ${cliConfigToml} ./pkg/config/config.toml ldflags+=" -X github.com/fastly/cli/pkg/revision.GitCommit=$(cat COMMIT)" ''; postInstall = '' export HOME="$(mktemp -d)" installShellCompletion --cmd fastly \ --bash <($out/bin/fastly --completion-script-bash) \ --zsh <($out/bin/fastly --completion-script-zsh) ''; meta = with lib; { description = "Command line tool for interacting with the Fastly API"; license = licenses.asl20; homepage = "https://github.com/fastly/cli"; maintainers = with maintainers; [ ereslibre shyim ]; }; }