about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRyan Burns <52847440+r-burns@users.noreply.github.com>2021-09-28 18:04:21 -0700
committerGitHub <noreply@github.com>2021-09-28 18:04:21 -0700
commit6b3f6192b1ea32273e0c252b11ec21989be439d8 (patch)
treee142941d323d86375d61547065c5b0fbd97defef /pkgs/tools
parent8deeda2c607a3f64d2fa935f1ad9d29a9b88dab4 (diff)
parent6ae789833fa53325bb0df973d92138a7f6f1b0ef (diff)
Merge pull request #139692 from IvanMalison/bump_quill
quill: 0.2.5 -> 0.2.7
Diffstat (limited to 'pkgs/tools')
-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 9f5465901b17a..9cf0f2f0c09c3 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.5";
+  version = "0.2.7";
 
   src = fetchFromGitHub {
     owner = "dfinity";
     repo = "quill";
     rev = "v${version}";
-    sha256 = "sha256-lvINDtOG2mmz0ESxL11DQVZh3IcEiZYYMu5oN5Q9WKA=";
+    sha256 = "sha256-3OlsCRpxRDKlfC0sa9MlFCupyRbDuqJQzDb9SQob1O0=";
   };
 
   ic = fetchFromGitHub {
@@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec {
     export OPENSSL_LIB_DIR=${openssl.out}/lib
   '';
 
-  cargoSha256 = "sha256-F2RMfHVFqCq9cb+9bjPWaRcQWKYIwwffWCssoQ6sSdU=";
+  cargoSha256 = "sha256-YxuBABGaZ+ti31seEYR6bB+OMgrSvl1lZyu4bqdxPIk=";
 
   nativeBuildInputs = [ pkg-config protobuf ];
   buildInputs = [ openssl ]