argc 0.14.0 -> 0.15.0 https://github.com/sigoden/argc/releases attrpath: argc Checking auto update branch... No auto update branch exists Old version 0.14.0" not present in master derivation file with contents: { lib, rustPlatform, fetchFromGitHub, installShellFiles }: rustPlatform.buildRustPackage rec { pname = "argc"; version = "0.15.1"; src = fetchFromGitHub { owner = "sigoden"; repo = pname; rev = "v${version}"; sha256 = "sha256-hN8M12evYxqNSsQKm0oRf3/b7WUf8k8pWa+0vRHstv4="; }; cargoSha256 = "sha256-JCFBA9LuNILJs4flzD/bGpv/R2vxMlA0aFTVdGKKs5I="; nativeBuildInputs = [ installShellFiles ]; postInstall = '' installShellCompletion completions/argc.{bash,fish,zsh} ''; meta = with lib; { description = "A tool to handle sh/bash cli parameters"; homepage = "https://github.com/sigoden/argc"; changelog = "https://github.com/sigoden/argc/releases/tag/v${version}"; license = with licenses; [ mit /* or */ asl20 ]; maintainers = with maintainers; [ figsoda ]; }; }