about summary refs log tree commit diff
path: root/pkgs/tools/text/igrep
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-01-14 03:11:47 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-01-14 03:11:47 +0000
commit233ffdee1f1c4d4f180fdd254ded577245f2ab0d (patch)
treed206d53e126b5c755e2598f160ce10ca20d6e51c /pkgs/tools/text/igrep
parent66bc6e35c9a266c1c06d0db525a2ad3abb292561 (diff)
downloadnixlib-233ffdee1f1c4d4f180fdd254ded577245f2ab0d.tar
nixlib-233ffdee1f1c4d4f180fdd254ded577245f2ab0d.tar.gz
nixlib-233ffdee1f1c4d4f180fdd254ded577245f2ab0d.tar.bz2
nixlib-233ffdee1f1c4d4f180fdd254ded577245f2ab0d.tar.lz
nixlib-233ffdee1f1c4d4f180fdd254ded577245f2ab0d.tar.xz
nixlib-233ffdee1f1c4d4f180fdd254ded577245f2ab0d.tar.zst
nixlib-233ffdee1f1c4d4f180fdd254ded577245f2ab0d.zip
igrep: 0.5.1 -> 1.0.0
Diffstat (limited to 'pkgs/tools/text/igrep')
-rw-r--r--pkgs/tools/text/igrep/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/text/igrep/default.nix b/pkgs/tools/text/igrep/default.nix
index 7869e1f478e2..ea0ecf58a96d 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.5.1";
+  version = "1.0.0";
 
   src = fetchFromGitHub {
     owner = "konradsz";
     repo = "igrep";
     rev = "v${version}";
-    sha256 = "sha256-Blfkis0Ix0qhSt83YxRqJQJ2oQQK9DGmI60OkyQN5CE=";
+    sha256 = "sha256-pXgmbSmOLeAtI7pP0X9go4KnlLv4RChBQNCPYeG4Q84=";
   };
 
-  cargoSha256 = "sha256-wEprTtD9/kKtGsbpj7gR+PjsDSAdl39ZoeU5BAGERRQ=";
+  cargoHash = "sha256-n1AVD6PuZFdZbTuGxNHvR6ngoVmSAixabcJl6nIcyP0=";
 
   buildInputs = lib.optionals stdenv.isDarwin [ Security ];