mitmproxy: relax some dependencies to fix build (#380668)
[NixPkgs.git] / pkgs / by-name / re / ren-find / package.nix
blob47cae71b89a2b0ad37b0410bc36de147315a4f63
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "ren-find";
9   version = "0-unstable-2024-01-11";
11   src = fetchFromGitHub {
12     owner = "robenkleene";
13     repo = "ren-find";
14     rev = "50c40172e354caffee48932266edd7c7a76a20f";
15     hash = "sha256-zVIt6Xp+Mvym6gySvHIZJt1QgzKVP/wbTGTubWk6kzI=";
16   };
18   useFetchCargoVendor = true;
19   cargoHash = "sha256-lSeO/GaJPZ8zosOIJRXVIEuPXaBg1GBvKBIuXtu1xZg=";
21   meta = with lib; {
22     description = "Command-line utility that takes find-formatted lines and batch renames them";
23     homepage = "https://github.com/robenkleene/ren-find";
24     license = licenses.mit;
25     maintainers = with maintainers; [ philiptaron ];
26     mainProgram = "ren";
27   };