1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/tools/misc/macchina/default.nix

32 lines
958 B
Nix
Raw Normal View History

2021-05-17 21:10:21 +01:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, installShellFiles
, libiconv, Foundation }:
2021-04-17 18:50:49 +01:00
rustPlatform.buildRustPackage rec {
pname = "macchina";
2021-09-15 18:35:16 +01:00
version = "1.1.4";
2021-04-17 18:50:49 +01:00
src = fetchFromGitHub {
owner = "Macchina-CLI";
repo = pname;
rev = "v${version}";
2021-09-15 18:35:16 +01:00
sha256 = "sha256-eZeS3lS/eKGvS7CoCnwhkX7jSwAqZOKLMWvLfZPzGtA=";
2021-04-17 18:50:49 +01:00
};
2021-09-15 18:35:16 +01:00
cargoSha256 = "sha256-Ix+Zj5qj1So8Urobw+78yCdRAerFkPctIkousk266DU=";
2021-04-17 18:50:49 +01:00
nativeBuildInputs = [ installShellFiles ];
2021-05-17 21:10:21 +01:00
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Foundation ];
2021-04-17 18:50:49 +01: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 ];
};
}