summary refs log tree commit diff
path: root/pkgs/tools/text
diff options
context:
space:
mode:
author0x4A6F <0x4A6F@users.noreply.github.com>2022-03-04 17:08:41 +0100
committerMatthieu Coudron <teto@users.noreply.github.com>2022-03-06 00:46:03 +0100
commita173e92ee458878651356b9bcfb1e2b5145f76af (patch)
tree555e2e27bdb1cbdb86dd0d2749d87fdf97bedba7 /pkgs/tools/text
parentbc6b09791edb89e22e175d1b57d7834999922db1 (diff)
downloadnixpkgs-a173e92ee458878651356b9bcfb1e2b5145f76af.tar
nixpkgs-a173e92ee458878651356b9bcfb1e2b5145f76af.tar.gz
nixpkgs-a173e92ee458878651356b9bcfb1e2b5145f76af.tar.bz2
nixpkgs-a173e92ee458878651356b9bcfb1e2b5145f76af.tar.lz
nixpkgs-a173e92ee458878651356b9bcfb1e2b5145f76af.tar.xz
nixpkgs-a173e92ee458878651356b9bcfb1e2b5145f76af.tar.zst
nixpkgs-a173e92ee458878651356b9bcfb1e2b5145f76af.zip
igrep: 0.1.2 -> 0.2.0
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/igrep/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/text/igrep/default.nix b/pkgs/tools/text/igrep/default.nix
index 5a05501f1eb..b7fc915c44d 100644
--- a/pkgs/tools/text/igrep/default.nix
+++ b/pkgs/tools/text/igrep/default.nix
@@ -9,16 +9,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "igrep";
-  version = "0.1.2";
+  version = "0.2.0";
 
   src = fetchFromGitHub {
     owner = "konradsz";
     repo = "igrep";
     rev = "v${version}";
-    sha256 = "sha256-ZbJogp4rTc3GAD71iQUIf5EqwJ8XD9/WmvdAcGIgcvY=";
+    sha256 = "sha256-CH0wf9EhNnfi93W/4IJf6bPqU4pgw6Q9965Wjln9pso=";
   };
 
-  cargoSha256 = "sha256-sj2GEyUPq9+JXlGpKYRNfhfwGf5F/J46AoOjUu4xm7I=";
+  cargoSha256 = "sha256-VnZuRLBt/Q+D89+jKm0rak+ID5oNbvN1k8or3pYzfIM=";
 
   buildInputs = lib.optionals stdenv.isDarwin [ Security ];
 
@@ -29,6 +29,7 @@ rustPlatform.buildRustPackage rec {
   meta = with lib; {
     description = "Interactive Grep";
     homepage = "https://github.com/konradsz/igrep";
+    changelog = "https://github.com/konradsz/igrep/blob/v${version}/CHANGELOG.md";
     license = licenses.mit;
     maintainers = with maintainers; [ _0x4A6F ];
   };