summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2023-01-31 07:31:15 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2023-01-31 07:31:15 +0000
commit9248c818167224593495dcd005907e7b5f2fe25d (patch)
tree5357b07e4c144903ac10f47662c290d63f868eea
parent70d8e51d872b179865cd50359d970af33ce37ddf (diff)
downloadnixpkgs-9248c818167224593495dcd005907e7b5f2fe25d.tar
nixpkgs-9248c818167224593495dcd005907e7b5f2fe25d.tar.gz
nixpkgs-9248c818167224593495dcd005907e7b5f2fe25d.tar.bz2
nixpkgs-9248c818167224593495dcd005907e7b5f2fe25d.tar.lz
nixpkgs-9248c818167224593495dcd005907e7b5f2fe25d.tar.xz
nixpkgs-9248c818167224593495dcd005907e7b5f2fe25d.tar.zst
nixpkgs-9248c818167224593495dcd005907e7b5f2fe25d.zip
igrep: 1.0.0 -> 1.1.0
-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 ea0ecf58a96..1e17cda75d5 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 = "1.0.0";
+  version = "1.1.0";
 
   src = fetchFromGitHub {
     owner = "konradsz";
     repo = "igrep";
     rev = "v${version}";
-    sha256 = "sha256-pXgmbSmOLeAtI7pP0X9go4KnlLv4RChBQNCPYeG4Q84=";
+    sha256 = "sha256-g6DY3+HwBNQ+jxByXyTJK5CjAaC48FpmsDf1qGGO/Lk=";
   };
 
-  cargoHash = "sha256-n1AVD6PuZFdZbTuGxNHvR6ngoVmSAixabcJl6nIcyP0=";
+  cargoHash = "sha256-7cSUIwWyWPxFDuRWplidbI93zbBV84T7e4Q//Uwj6N4=";
 
   buildInputs = lib.optionals stdenv.isDarwin [ Security ];