Merge pull request #102811 from Kloenk/onefetch_2_6

onefetch: 2.5.0 -> 2.6.0
This commit is contained in:
John Ericson 2020-11-04 16:32:07 -05:00 committed by GitHub
commit 4cacea5a16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,16 +3,16 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "onefetch"; pname = "onefetch";
version = "2.5.0"; version = "2.6.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "o2sh"; owner = "o2sh";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-F1NbzcMoct0mjWKY2itz4cBqVToY7HpoaRzk3l683fY="; sha256 = "sha256-KdPr/6wGyoHhEwfPektL+B1khyoRfxDHI4aFcKNU0TM=";
}; };
cargoSha256 = "sha256-eBY+34VEPEAv5bqerxR3i7cJrVb1GtvmWyrM7uuef2E="; cargoSha256 = "sha256-MLlGz7Sid0G52//XekqkZgzLqFL7xoUwT6OvpaF4jm0=";
buildInputs = with stdenv; buildInputs = with stdenv;
lib.optionals isDarwin [ CoreFoundation libiconv libresolv Security ]; lib.optionals isDarwin [ CoreFoundation libiconv libresolv Security ];
@ -21,6 +21,6 @@ rustPlatform.buildRustPackage rec {
description = "Git repository summary on your terminal"; description = "Git repository summary on your terminal";
homepage = "https://github.com/o2sh/onefetch"; homepage = "https://github.com/o2sh/onefetch";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ filalex77 ]; maintainers = with maintainers; [ filalex77 kloenk ];
}; };
} }