Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
696 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "rnr";
version = "0.5.0";
src = fetchFromGitHub {
owner = "ismaelgv";
repo = "rnr";
rev = "v${version}";
sha256 = "sha256-uuM8zh0wFSsySedXmdm8WGGR4HmUc5TCZ6socdztrZI=";
};
cargoHash = "sha256-lXo3BECHpiNMRMgd4XZy+b8QHbE0TZ5/P4cz+SgwqsY=";
meta = {
description = "Command-line tool to batch rename files and directories";
mainProgram = "rnr";
homepage = "https://github.com/ismaelgv/rnr";
changelog = "https://github.com/ismaelgv/rnr/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ figsoda ];
};
}