2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
29 lines
832 B
Nix
29 lines
832 B
Nix
{ lib, rustPlatform, fetchFromGitHub, stdenv, darwin }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "pfetch-rs";
|
|
version = "2.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Gobidev";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-/eVtI+Uvb0r1af20MlQU8sDSNf6YyIBvFKSVp47JMfQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-eEBtrMF6dl5TzOZHnqjX4Yz2SfknGM2bzJcQWQIctPc=";
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.AppKit
|
|
darwin.apple_sdk.frameworks.DisplayServices
|
|
];
|
|
|
|
|
|
meta = with lib; {
|
|
description = "A rewrite of the pfetch system information tool in Rust";
|
|
homepage = "https://github.com/Gobidev/pfetch-rs";
|
|
changelog = "https://github.com/Gobidev/pfetch-rs/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ gobidev ];
|
|
};
|
|
}
|