nixpkgs/pkgs/misc/fastly/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

75 lines
2.2 KiB
Nix
Raw Normal View History

2022-12-04 12:50:06 +00:00
{ lib
, fetchurl
, fetchFromGitHub
, installShellFiles
, buildGoModule
, go
}:
2022-04-24 09:50:16 +00:00
buildGoModule rec {
pname = "fastly";
2023-02-12 09:46:15 +00:00
version = "6.0.3";
2022-04-24 09:50:16 +00:00
src = fetchFromGitHub {
owner = "fastly";
repo = "cli";
2022-12-04 12:50:06 +00:00
rev = "refs/tags/v${version}";
2023-02-12 09:46:15 +00:00
hash = "sha256-6Qkt7ofNhnqikckUOTaEe5ptsYQ+9ELuuobhfnG7VTU=";
2022-04-24 09:50:16 +00:00
# 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
'';
};
2022-12-04 12:50:06 +00:00
subPackages = [
"cmd/fastly"
];
2022-04-24 09:50:16 +00:00
2023-02-04 00:29:12 +00:00
vendorHash = "sha256-yyptdLkC0x2npZu2oEbvSJXIWShnSrQ0n6cPrDUlrCw=";
2022-04-24 09:50:16 +00:00
2022-12-04 12:50:06 +00:00
nativeBuildInputs = [
installShellFiles
];
2022-04-24 09:50:16 +00:00
# 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}"
2022-04-24 09:50:16 +00:00
];
2022-10-21 15:01:26 +00:00
preBuild = let
cliConfigToml = fetchurl {
2023-02-07 21:23:23 +00:00
url = "https://web.archive.org/web/20230207211120/https://developer.fastly.com/api/internal/cli-config";
hash = "sha256-Vkl8V5AkiJMZLswSN0vTnz7S7/5lXftlWD5UZh//vUw=";
2022-10-21 15:01:26 +00:00
};
in ''
cp ${cliConfigToml} ./pkg/config/config.toml
2022-04-24 09:50:16 +00:00
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";
homepage = "https://github.com/fastly/cli";
2022-12-04 12:50:06 +00:00
changelog = "https://github.com/fastly/cli/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
2022-04-24 09:50:16 +00:00
maintainers = with maintainers; [ ereslibre shyim ];
};
}