mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, git
|
|
}:
|
|
let
|
|
faasPlatform = platform:
|
|
let cpuName = platform.parsed.cpu.name; in {
|
|
"aarch64" = "arm64";
|
|
"armv7l" = "armhf";
|
|
"armv6l" = "armhf";
|
|
}.${cpuName} or cpuName;
|
|
in
|
|
buildGoModule rec {
|
|
pname = "faas-cli";
|
|
version = "0.14.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openfaas";
|
|
repo = "faas-cli";
|
|
rev = version;
|
|
sha256 = "sha256-R9nusKdZpKZmUcEUchZlj7Jd5sM/Z2SScdK6kO6Ht2o=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
CGO_ENABLED = 0;
|
|
|
|
vendorSha256 = null;
|
|
|
|
subPackages = [ "." ];
|
|
|
|
ldflags = [
|
|
"-s" "-w"
|
|
"-X github.com/openfaas/faas-cli/version.GitCommit=ref/tags/${version}"
|
|
"-X github.com/openfaas/faas-cli/version.Version=${version}"
|
|
"-X github.com/openfaas/faas-cli/commands.Platform=${faasPlatform stdenv.targetPlatform}"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram "$out/bin/faas-cli" \
|
|
--prefix PATH : ${lib.makeBinPath [ git ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/openfaas/faas-cli";
|
|
description = "Official CLI for OpenFaaS ";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ welteki techknowlogick ];
|
|
};
|
|
}
|