2021-05-20 23:08:51 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, installShellFiles
|
|
|
|
, libiconv, Foundation }:
|
2021-04-18 02:13:31 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "macchina";
|
2021-05-28 09:39:13 +00:00
|
|
|
version = "0.8.21";
|
2021-04-18 02:13:31 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Macchina-CLI";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-05-28 09:39:13 +00:00
|
|
|
sha256 = "sha256-cwQCqKC/onEZ4i533NSHrnNAl8/sRivK/ItX8oqB86Q=";
|
2021-04-18 02:13:31 +00:00
|
|
|
};
|
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
cargoSha256 = "sha256-W29k2eLcYTqVn0v1dJrvFLRcWuVMsoHD+vPDL7YkiWE=";
|
2021-04-18 02:13:31 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2021-05-20 23:08:51 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Foundation ];
|
2021-04-18 02:13:31 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion target/completions/*.{bash,fish}
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A fast, minimal and customizable system information fetcher";
|
|
|
|
homepage = "https://github.com/Macchina-CLI/macchina";
|
|
|
|
changelog = "https://github.com/Macchina-CLI/macchina/releases/tag/v${version}";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ _414owen ];
|
|
|
|
};
|
|
|
|
}
|