about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-12-31 13:35:54 +0100
committerGitHub <noreply@github.com>2022-12-31 13:35:54 +0100
commit9f5de19b0e8f32f4aef7963bbf1b7a2f800243b9 (patch)
tree9c255352a018c3161e6701482f7300b1a85fc1bb /pkgs
parent8f9688fe184706415963de23248c15dee75e7a64 (diff)
parent6b20c8741ec29c720a213c281aeeb770cf5d259c (diff)
Merge pull request #208455 from wahjava/update-ugrep
ugrep: 3.9.2 -> 3.9.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/text/ugrep/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/text/ugrep/default.nix b/pkgs/tools/text/ugrep/default.nix
index 0cf5c77544b71..8ba2d116f538a 100644
--- a/pkgs/tools/text/ugrep/default.nix
+++ b/pkgs/tools/text/ugrep/default.nix
@@ -11,13 +11,13 @@
 
 stdenv.mkDerivation rec {
   pname = "ugrep";
-  version = "3.9.2";
+  version = "3.9.3";
 
   src = fetchFromGitHub {
     owner = "Genivia";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-9c4PoDJLfUH6ySNIxJDg5m2M2WFxNtuqCVKF6FvOHzY=";
+    hash = "sha256-mELI0mAkIERq8lfO5CdZcVgrsR5sybMEjKXJVPeg+dg=";
   };
 
   buildInputs = [
@@ -32,6 +32,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Ultra fast grep with interactive query UI";
     homepage = "https://github.com/Genivia/ugrep";
+    changelog = "https://github.com/Genivia/ugrep/releases/tag/v${version}";
     maintainers = with maintainers; [ numkem ];
     license = licenses.bsd3;
     platforms = platforms.all;