summary refs log tree commit diff
path: root/pkgs/tools/misc/owofetch/default.nix
blob: 54b2fa35d696b9987d7dc1ffcf6a3c0e8d179f32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib
, stdenvNoCC
, rustPlatform
, fetchFromGitHub
, Foundation
, DiskArbitration
}:

rustPlatform.buildRustPackage rec {
  pname = "owofetch";

  version = "0.3.1";

  src = fetchFromGitHub {
    owner = "netthier";
    repo = "owofetch-rs";
    rev = "v${version}";
    sha256 = "sha256-I8mzOUvm72KLLBumpgn9gNyx9FKvUrB4ze1iM1+OA18=";
  };

  cargoSha256 = "sha256-rfN4QERs1H1G7ZZim//78vlxbYfU4Cx7SYYUz/QLKeU=";

  buildInputs = lib.optionals stdenvNoCC.isDarwin [
    Foundation
    DiskArbitration
  ];

  meta = with lib; {
    description = "Alternative to *fetch, uwuifies all stats";
    homepage = "https://github.com/netthier/owofetch-rs";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ nullishamy ];
  };
}