nixpkgs/pkgs/tools/misc/macchina/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
958 B
Nix
Raw Normal View History

2021-05-17 20:10:21 +00:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, installShellFiles
, libiconv, Foundation }:
2021-04-17 17:50:49 +00:00
rustPlatform.buildRustPackage rec {
pname = "macchina";
2022-02-12 12:30:11 +00:00
version = "6.0.6";
2021-04-17 17:50:49 +00:00
src = fetchFromGitHub {
owner = "Macchina-CLI";
repo = pname;
rev = "v${version}";
2022-02-12 12:30:11 +00:00
sha256 = "sha256-G95eQ5cIa5313k8YcuicbzPeq9VXVo2DgPMwfFMNXtk=";
2021-04-17 17:50:49 +00:00
};
2022-02-12 12:30:11 +00:00
cargoSha256 = "sha256-mkAklLtG/sB0eLla5cveMqyPXwMCE5ufer8qA5L9chg=";
2021-04-17 17:50:49 +00:00
nativeBuildInputs = [ installShellFiles ];
2021-05-17 20:10:21 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Foundation ];
2021-04-17 17:50:49 +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 ];
};
}