2022-12-04T03:02:21 fn-cli 0.6.20 -> 0.6.22 https://github.com/fnproject/cli/releases 2022-12-04T03:02:24 attrpath: fn-cli 2022-12-04T03:02:24 Checking auto update branch... 2022-12-04T03:02:24 No auto update branch exists 2022-12-04T03:02:24 Old version 0.6.20" not present in master derivation file with contents: { lib, stdenv, buildGoModule, fetchFromGitHub, docker }: buildGoModule rec { pname = "fn"; version = "0.6.22"; src = fetchFromGitHub { owner = "fnproject"; repo = "cli"; rev = version; hash = "sha256-FXgDCZcHcKvgkV1YFjMKl+5oJ5H1DV/Gj9am5VJuIjw="; }; vendorSha256 = null; subPackages = ["."]; buildInputs = [ docker ]; preBuild = '' export HOME=$TMPDIR ''; postInstall = '' mv $out/bin/cli $out/bin/fn ''; meta = with lib; { description = "Command-line tool for the fn project"; homepage = "https://fnproject.io"; license = licenses.asl20; maintainers = [ maintainers.c4605 ]; broken = stdenv.isDarwin; }; }