fn-cli 0.6.25 -> 0.6.26 https://github.com/fnproject/cli/releases attrpath: fn-cli Checking auto update branch... No auto update branch exists Old version 0.6.25" not present in master derivation file with contents: { lib, stdenv, buildGoModule, fetchFromGitHub, docker }: buildGoModule rec { pname = "fn"; version = "0.6.26"; src = fetchFromGitHub { owner = "fnproject"; repo = "cli"; rev = version; hash = "sha256-Tj64/8uYEy4qZISjmtpOGTMzgSkBB516/Dej6/biYRY="; }; vendorHash = 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 ]; }; }