mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-06 13:53:05 +00:00
cf68961533
Diff: https://github.com/ismaelgv/rnr/compare/v0.4.1...v0.4.2 Changelog: https://github.com/ismaelgv/rnr/blob/v0.4.2/CHANGELOG.md
24 lines
670 B
Nix
24 lines
670 B
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "rnr";
|
|
version = "0.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ismaelgv";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-g/PnvOZzlWzEHf3vvYANeJ2ogQ/6duNzhlKpKMBoBFU=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-+oDRNBQ03MknhcTpZFKt0ipJY43LPOKbGF014rrs6dw=";
|
|
|
|
meta = with lib; {
|
|
description = "A command-line tool to batch rename files and directories";
|
|
homepage = "https://github.com/ismaelgv/rnr";
|
|
changelog = "https://github.com/ismaelgv/rnr/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|