Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
686 B
Nix
31 lines
686 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "owofetch";
|
|
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "netthier";
|
|
repo = "owofetch-rs";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-I8mzOUvm72KLLBumpgn9gNyx9FKvUrB4ze1iM1+OA18=";
|
|
};
|
|
|
|
cargoHash = "sha256-0ON1h8+ruLOvBR7Q/hOIW6j+BjfPAAuYA2wrUYj59Ow=";
|
|
|
|
meta = with lib; {
|
|
description = "Alternative to *fetch, uwuifies all stats";
|
|
homepage = "https://github.com/netthier/owofetch-rs";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.x86_64;
|
|
maintainers = with maintainers; [ nullishamy ];
|
|
mainProgram = "owofetch";
|
|
};
|
|
}
|