about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-09-12 16:42:23 +0200
committerGitHub <noreply@github.com>2021-09-12 16:42:23 +0200
commit0d4fbdfdeae9590692ef91f7744f549c8617d6fd (patch)
treee0605513c2a343d2063ab2c012dfa0f7cbaa27f2 /pkgs
parentd94bd5c599fb225591786a45fb89b081a1189d85 (diff)
parent022c300df10d5e90ea9738441fd3d978b80596e5 (diff)
Merge pull request #137468 from IvanMalison/bump_quill
quill: 0.2.4 -> 0.2.5
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/quill/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/quill/default.nix b/pkgs/tools/security/quill/default.nix
index 9440823f4292a..9f5465901b17a 100644
--- a/pkgs/tools/security/quill/default.nix
+++ b/pkgs/tools/security/quill/default.nix
@@ -2,13 +2,13 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "quill";
-  version = "0.2.4";
+  version = "0.2.5";
 
   src = fetchFromGitHub {
     owner = "dfinity";
     repo = "quill";
     rev = "v${version}";
-    sha256 = "sha256-rR5VgdlJy6TQBmCHuKc7nPjznbeLjCmQdUJKjY0GsNI=";
+    sha256 = "sha256-lvINDtOG2mmz0ESxL11DQVZh3IcEiZYYMu5oN5Q9WKA=";
   };
 
   ic = fetchFromGitHub {
@@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec {
     export OPENSSL_LIB_DIR=${openssl.out}/lib
   '';
 
-  cargoSha256 = "sha256-nLNuOqShOq01gVWoRCbsvfAd7B9VClUA8Hu8/UQNILg=";
+  cargoSha256 = "sha256-F2RMfHVFqCq9cb+9bjPWaRcQWKYIwwffWCssoQ6sSdU=";
 
   nativeBuildInputs = [ pkg-config protobuf ];
   buildInputs = [ openssl ]