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