onefetch: 2.9.1 -> 2.10.2

+14 -6
+14 -6
pkgs/tools/misc/onefetch/default.nix
··· 1 - { fetchFromGitHub, rustPlatform, lib, stdenv, fetchpatch 2 - , CoreFoundation, libiconv, libresolv, Security }: 1 + { fetchFromGitHub 2 + , rustPlatform 3 + , lib 4 + , stdenv 5 + , fetchpatch 6 + , CoreFoundation 7 + , libiconv 8 + , libresolv 9 + , Security 10 + }: 3 11 4 12 rustPlatform.buildRustPackage rec { 5 13 pname = "onefetch"; 6 - version = "2.9.1"; 14 + version = "2.10.2"; 7 15 8 16 src = fetchFromGitHub { 9 17 owner = "o2sh"; 10 18 repo = pname; 11 19 rev = "v${version}"; 12 - sha256 = "sha256-owa+HmzMXpLR7H1FssW4gQiVAQGJRXhcitgJj6pxJRc="; 20 + sha256 = "sha256-lrRp01ZeK9bGn7L7SqAxJAU9qugpHnC06CWChhVPGGQ="; 13 21 }; 14 22 15 - cargoSha256 = "sha256-Bn2FlRESuW83ouGPiBwvGkIB0uCDDG0hdhRfRBks/0Q="; 23 + cargoSha256 = "sha256-vNa1OF1x/MCTo9B4DTDZNWyHTsOl7Za3EgjnpsL/gWg="; 16 24 17 25 buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation libiconv libresolv Security ]; 18 26 ··· 20 28 description = "Git repository summary on your terminal"; 21 29 homepage = "https://github.com/o2sh/onefetch"; 22 30 license = licenses.mit; 23 - maintainers = with maintainers; [ Br1ght0ne kloenk ]; 31 + maintainers = with maintainers; [ Br1ght0ne kloenk SuperSandro2000 ]; 24 32 }; 25 33 }