about summary refs log tree commit diff
path: root/pkgs/by-name/re
diff options
context:
space:
mode:
authorPhilip Taron <philip.taron@gmail.com>2024-03-10 18:57:35 -0700
committerPhilip Taron <philip.taron@gmail.com>2024-03-10 19:22:42 -0700
commit69cf89d97eddbb84da6b4d6020e9daaa65e58310 (patch)
tree6960c3dddf000a2f050d13a3507aa4440a9bce70 /pkgs/by-name/re
parent4b302c132d885ce0dad9cc3219b83a211c34ff5d (diff)
downloadnixlib-69cf89d97eddbb84da6b4d6020e9daaa65e58310.tar
nixlib-69cf89d97eddbb84da6b4d6020e9daaa65e58310.tar.gz
nixlib-69cf89d97eddbb84da6b4d6020e9daaa65e58310.tar.bz2
nixlib-69cf89d97eddbb84da6b4d6020e9daaa65e58310.tar.lz
nixlib-69cf89d97eddbb84da6b4d6020e9daaa65e58310.tar.xz
nixlib-69cf89d97eddbb84da6b4d6020e9daaa65e58310.tar.zst
nixlib-69cf89d97eddbb84da6b4d6020e9daaa65e58310.zip
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";
+  };
+}