Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / re / ren-find / package.nix
blob0008b398093e1c3e72ed41c81b8178633fcc9bdd
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "ren-find";
8   version = "0-unstable-2024-01-11";
10   src = fetchFromGitHub {
11     owner = "robenkleene";
12     repo = "ren-find";
13     rev = "50c40172e354caffee48932266edd7c7a76a20f";
14     hash = "sha256-zVIt6Xp+Mvym6gySvHIZJt1QgzKVP/wbTGTubWk6kzI=";
15   };
17   cargoHash = "sha256-pUy8850v4m9P5OuL15qxmDDQYYyae9HFXRbg3b4f3Lw=";
19   meta = with lib; {
20     description = "Command-line utility that takes find-formatted lines and batch renames them";
21     homepage = "https://github.com/robenkleene/ren-find";
22     license = licenses.mit;
23     maintainers = with maintainers; [ philiptaron ];
24     mainProgram = "ren";
25   };