cocogitto 5.3.1 -> 5.4.0 https://repology.org/project/cocogitto/versions attrpath: cocogitto Checking auto update branch... No auto update branch exists Old version 5.3.1" not present in master derivation file with contents: { lib, rustPlatform, fetchFromGitHub, installShellFiles, stdenv, Security, makeWrapper, libgit2 }: rustPlatform.buildRustPackage rec { pname = "cocogitto"; version = "5.4.0"; src = fetchFromGitHub { owner = "oknozor"; repo = pname; rev = version; sha256 = "sha256-HlvFE7payno4cBOZEQS3stsVPBte+1EUcfca5lVlmVc="; }; cargoHash = "sha256-zKqWrwd5dv6Vja/BXPXLBRFzb0wwrfwFsHXau+UBPg4="; # Test depend on git configuration that would likely exist in a normal user environment # and might be failing to create the test repository it works in. doCheck = false; nativeBuildInputs = [ installShellFiles ]; buildInputs = [ libgit2 ] ++ lib.optional stdenv.isDarwin Security; postInstall = '' installShellCompletion --cmd cog \ --bash <($out/bin/cog generate-completions bash) \ --fish <($out/bin/cog generate-completions fish) \ --zsh <($out/bin/cog generate-completions zsh) ''; meta = with lib; { description = "A set of cli tools for the conventional commit and semver specifications"; homepage = "https://github.com/oknozor/cocogitto"; license = licenses.mit; maintainers = with maintainers; [ travisdavis-ops ]; }; }