faas-cli: 0.14.3 -> 0.14.4

This commit is contained in:
techknowlogick 2022-04-05 17:29:05 -04:00
parent 6f42cc4ef4
commit e16daee0f5

View file

@ -9,13 +9,13 @@ let
in in
buildGoModule rec { buildGoModule rec {
pname = "faas-cli"; pname = "faas-cli";
version = "0.14.3"; version = "0.14.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "openfaas"; owner = "openfaas";
repo = "faas-cli"; repo = "faas-cli";
rev = version; rev = version;
sha256 = "sha256-1aflQXfW/y31Dk0OZW77qNQKEwkhi6p8ZBfTUyRDbdo="; sha256 = "sha256-hpQn1lEJP0FmU1jhmXDgV/11RbMdEqblLPIrTQLKLOc=";
}; };
CGO_ENABLED = 0; CGO_ENABLED = 0;
@ -35,6 +35,6 @@ buildGoModule rec {
homepage = "https://github.com/openfaas/faas-cli"; homepage = "https://github.com/openfaas/faas-cli";
description = "Official CLI for OpenFaaS "; description = "Official CLI for OpenFaaS ";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ welteki ]; maintainers = with maintainers; [ welteki techknowlogick ];
}; };
} }