mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 20:53:22 +00:00
faas-cli: init at 0.13.13
This commit is contained in:
parent
ef10624765
commit
7588cd1481
42
pkgs/development/tools/faas-cli/default.nix
Normal file
42
pkgs/development/tools/faas-cli/default.nix
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
{ lib, stdenv, buildGoModule, fetchFromGitHub }:
|
||||||
|
let
|
||||||
|
faasPlatform = platform:
|
||||||
|
let cpuName = platform.parsed.cpu.name; in {
|
||||||
|
"aarch64" = "arm64";
|
||||||
|
"armv7l" = "armhf";
|
||||||
|
}.${cpuName} or cpuName;
|
||||||
|
in
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "faas-cli";
|
||||||
|
# When updating version change rev.
|
||||||
|
version = "0.13.13";
|
||||||
|
rev = "72816d486cf76c3089b915dfb0b66b85cf096634";
|
||||||
|
platform = faasPlatform stdenv.targetPlatform;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "openfaas";
|
||||||
|
repo = "faas-cli";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0mmrakyy2qmkldld7pxf5bx6whdadq2r52b68f9p9z7yqrdimix8";
|
||||||
|
};
|
||||||
|
|
||||||
|
CGO_ENABLED = 0;
|
||||||
|
|
||||||
|
vendorSha256 = null;
|
||||||
|
|
||||||
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-s" "-w"
|
||||||
|
"-X github.com/openfaas/faas-cli/version.GitCommit=${rev}"
|
||||||
|
"-X github.com/openfaas/faas-cli/version.Version=${version}"
|
||||||
|
"-X github.com/openfaas/faas-cli/commands.Platform=${platform}"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/openfaas/faas-cli";
|
||||||
|
description = "Official CLI for OpenFaaS ";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ welteki ];
|
||||||
|
};
|
||||||
|
}
|
@ -13836,6 +13836,8 @@ with pkgs;
|
|||||||
|
|
||||||
ezquake = callPackage ../games/ezquake { };
|
ezquake = callPackage ../games/ezquake { };
|
||||||
|
|
||||||
|
faas-cli = callPackage ../development/tools/faas-cli { };
|
||||||
|
|
||||||
findbugs = callPackage ../development/tools/analysis/findbugs { };
|
findbugs = callPackage ../development/tools/analysis/findbugs { };
|
||||||
|
|
||||||
findnewest = callPackage ../development/tools/misc/findnewest { };
|
findnewest = callPackage ../development/tools/misc/findnewest { };
|
||||||
|
Loading…
Reference in New Issue
Block a user