about summary refs log tree commit diff
path: root/pkgs/by-name/re
diff options
context:
space:
mode:
authora-n-n-a-l-e-e <150648636+a-n-n-a-l-e-e@users.noreply.github.com>2024-03-11 07:59:19 -0700
committerGitHub <noreply@github.com>2024-03-11 07:59:19 -0700
commit56b22d333ad08fdb45119408fe5c19526126179b (patch)
tree107d6b1c0aeb52b9cc18b9cc8531fc13127d506c /pkgs/by-name/re
parent331e899e2e95a42120616823cefd69a82fb06638 (diff)
parent69cf89d97eddbb84da6b4d6020e9daaa65e58310 (diff)
downloadnixlib-56b22d333ad08fdb45119408fe5c19526126179b.tar
nixlib-56b22d333ad08fdb45119408fe5c19526126179b.tar.gz
nixlib-56b22d333ad08fdb45119408fe5c19526126179b.tar.bz2
nixlib-56b22d333ad08fdb45119408fe5c19526126179b.tar.lz
nixlib-56b22d333ad08fdb45119408fe5c19526126179b.tar.xz
nixlib-56b22d333ad08fdb45119408fe5c19526126179b.tar.zst
nixlib-56b22d333ad08fdb45119408fe5c19526126179b.zip
Merge pull request #294894 from philiptaron/ren-find
ren-find: init at 0-unstable-2024-01-11
Diffstat (limited to 'pkgs/by-name/re')
-rw-r--r--pkgs/by-name/re/ren-find/package.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/by-name/re/ren-find/package.nix b/pkgs/by-name/re/ren-find/package.nix
new file mode 100644
index 000000000000..caddd17ae1d5
--- /dev/null
+++ b/pkgs/by-name/re/ren-find/package.nix
@@ -0,0 +1,26 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "ren-find";
+  version = "0-unstable-2024-01-11";
+
+  src = fetchFromGitHub {
+    owner = "robenkleene";
+    repo = "ren-find";
+    rev = "50c40172e354caffee48932266edd7c7a76a20f";
+    hash = "sha256-zVIt6Xp+Mvym6gySvHIZJt1QgzKVP/wbTGTubWk6kzI=";
+  };
+
+  cargoHash = "sha256-pUy8850v4m9P5OuL15qxmDDQYYyae9HFXRbg3b4f3Lw=";
+
+  meta = with lib; {
+    description = "A command-line utility that takes find-formatted lines and batch renames them.";
+    homepage = "https://github.com/robenkleene/ren-find";
+    license = licenses.mit;
+    maintainers = with maintainers; [ philiptaron ];
+    mainProgram = "ren";
+  };
+}