nixpkgs/pkgs/development/tools/faas-cli/default.nix

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

41 lines
1 KiB
Nix
Raw Normal View History

2021-09-08 09:09:52 +02:00
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
let
faasPlatform = platform:
let cpuName = platform.parsed.cpu.name; in {
"aarch64" = "arm64";
"armv7l" = "armhf";
2021-11-08 15:46:29 +01:00
"armv6l" = "armhf";
2021-09-08 09:09:52 +02:00
}.${cpuName} or cpuName;
in
buildGoModule rec {
pname = "faas-cli";
2022-04-05 23:29:05 +02:00
version = "0.14.4";
2021-09-08 09:09:52 +02:00
src = fetchFromGitHub {
owner = "openfaas";
repo = "faas-cli";
rev = version;
2022-04-05 23:29:05 +02:00
sha256 = "sha256-hpQn1lEJP0FmU1jhmXDgV/11RbMdEqblLPIrTQLKLOc=";
2021-09-08 09:09:52 +02:00
};
CGO_ENABLED = 0;
vendorSha256 = null;
subPackages = [ "." ];
ldflags = [
"-s" "-w"
2022-03-10 05:37:24 +01:00
"-X github.com/openfaas/faas-cli/version.GitCommit=ref/tags/${version}"
2021-09-08 09:09:52 +02:00
"-X github.com/openfaas/faas-cli/version.Version=${version}"
2021-11-08 15:46:29 +01:00
"-X github.com/openfaas/faas-cli/commands.Platform=${faasPlatform stdenv.targetPlatform}"
2021-09-08 09:09:52 +02:00
];
meta = with lib; {
homepage = "https://github.com/openfaas/faas-cli";
description = "Official CLI for OpenFaaS ";
license = licenses.mit;
2022-04-05 23:29:05 +02:00
maintainers = with maintainers; [ welteki techknowlogick ];
2021-09-08 09:09:52 +02:00
};
}