Files
LeFaucheur0769andmana-byte 390455cdec rustfetch: init at 0.2.0
rustfetch: init at 0.2.0

Update pkgs/by-name/ru/rustfetch/package.nix

Co-authored-by: Yohann Boniface <edhyjox@gmail.com>

Update pkgs/by-name/ru/rustfetch/package.nix

Co-authored-by: Yohann Boniface <edhyjox@gmail.com>

Update pkgs/by-name/ru/rustfetch/package.nix

Co-authored-by: mana-byte <93316844+mana-byte@users.noreply.github.com>

Update pkgs/by-name/ru/rustfetch/package.nix

Co-authored-by: mana-byte <93316844+mana-byte@users.noreply.github.com>

Update pkgs/by-name/ru/rustfetch/package.nix

Co-authored-by: mana-byte <93316844+mana-byte@users.noreply.github.com>

Fix changelog URL formatting in package.nix

Update pkgs/by-name/ru/rustfetch/package.nix

Co-authored-by: mana-byte <93316844+mana-byte@users.noreply.github.com>

Update pkgs/by-name/ru/rustfetch/package.nix

Co-authored-by: mana-byte <93316844+mana-byte@users.noreply.github.com>

Update pkgs/by-name/ru/rustfetch/package.nix

Co-authored-by: mana-byte <93316844+mana-byte@users.noreply.github.com>
2026-02-19 01:02:39 +01:00

28 lines
816 B
Nix

{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rustfetch";
version = "0.2.0";
src = fetchFromGitHub {
owner = "lemuray";
repo = "rustfetch";
tag = "v${finalAttrs.version}";
hash = "sha256-iGcxDKl36kbEi+OiH4gB2+HxP37bpqAMZguIXDzq3Jw=";
};
cargoHash = "sha256-87wfFczmgCft4ke/RQKi54wvqFKGRJMtqhkwQgDCedg=";
meta = {
description = "CLI tool designed to fetch system information in the fastest and safest way possible";
homepage = "https://github.com/lemuray/rustfetch";
changelog = "https://github.com/lemuray/rustfetch/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ lefaucheur0769 ];
mainProgram = "rustfetch";
};
})