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 19:07:20 -0700
committerPhilip Taron <philip.taron@gmail.com>2024-03-10 19:23:51 -0700
commit7d5aa3998f670ca0c0840288dc635d61efc32d89 (patch)
treeda49d911e269df9278d15fa27628298c17abb4ca /pkgs/by-name/re
parent4b302c132d885ce0dad9cc3219b83a211c34ff5d (diff)
rep-grep: init at 0-unstable-2024-02-06
Diffstat (limited to 'pkgs/by-name/re')
-rw-r--r--pkgs/by-name/re/rep-grep/package.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/by-name/re/rep-grep/package.nix b/pkgs/by-name/re/rep-grep/package.nix
new file mode 100644
index 0000000000000..1869938cb55b0
--- /dev/null
+++ b/pkgs/by-name/re/rep-grep/package.nix
@@ -0,0 +1,26 @@
+{ lib
+, rustPlatform
+, fetchFromGitHub
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "rep-grep";
+  version = "0-unstable-2024-02-06";
+
+  src = fetchFromGitHub {
+    owner = "robenkleene";
+    repo = "rep-grep";
+    rev = "10510d47e392cb9d30a861c69f702fd194b3fa88";
+    hash = "sha256-/dH+mNtNHaYFndVhoqmz4Sc3HeemoQt1HGD98mb9Qhw=";
+  };
+
+  cargoHash = "sha256-ch+RMLc+xogL0gkrnw+n+bmUVIcixdPTaNPHPuJ0/EI=";
+
+  meta = with lib; {
+    description = "A command-line utility that takes grep-formatted lines and performs a find-and-replace on them.";
+    homepage = "https://github.com/robenkleene/rep-grep";
+    license = licenses.mit;
+    maintainers = with maintainers; [ philiptaron ];
+    mainProgram = "rep";
+  };
+}