2022-11-29T10:21:09 onefetch 2.13.2 -> 2.14.2 https://github.com/o2sh/onefetch/releases 2022-11-29T10:21:11 attrpath: onefetch 2022-11-29T10:21:12 Checking auto update branch... 2022-11-29T10:21:12 No auto update branch exists 2022-11-29T10:21:12 Old version 2.13.2" not present in master derivation file with contents: { lib , rustPlatform , fetchFromGitHub , cmake , installShellFiles , pkg-config , zstd , stdenv , CoreFoundation , libresolv , Security , git }: rustPlatform.buildRustPackage rec { pname = "onefetch"; version = "2.14.2"; src = fetchFromGitHub { owner = "o2sh"; repo = pname; rev = version; sha256 = "sha256-LiX91GMJdmhosCZcL3JlzYRieqeQs+YWMAtKTzSBzZY="; }; cargoSha256 = "sha256-D1GVwNpuqoiwJsWAZfTR9qUC1xuHR+O0bq9rxmgkYXk="; cargoPatches = [ # enable pkg-config feature of zstd ./zstd-pkg-config.patch ]; nativeBuildInputs = [ cmake installShellFiles pkg-config ]; buildInputs = [ zstd ] ++ lib.optionals stdenv.isDarwin [ CoreFoundation libresolv Security ]; checkInputs = [ git ]; preCheck = '' git init git config user.name nixbld git config user.email nixbld@example.com git add . git commit -m test ''; postInstall = '' installShellCompletion --cmd onefetch \ --bash <($out/bin/onefetch --generate bash) \ --fish <($out/bin/onefetch --generate fish) \ --zsh <($out/bin/onefetch --generate zsh) ''; meta = with lib; { description = "Git repository summary on your terminal"; homepage = "https://github.com/o2sh/onefetch"; changelog = "https://github.com/o2sh/onefetch/blob/v${version}/CHANGELOG.md"; license = licenses.mit; maintainers = with maintainers; [ Br1ght0ne figsoda kloenk SuperSandro2000 ]; }; }