Unverified Commit 56b858a7 authored by Norbert Melzer's avatar Norbert Melzer Committed by GitHub
Browse files

gokey: 0.1.3 -> 0.2.0 (#467206)

parents bf79995e 522a5cea
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -5,18 +5,16 @@
}:
buildGoModule rec {
  pname = "gokey";
  version = "0.1.3";

  patches = [ ./version.patch ];
  version = "0.2.0";

  src = fetchFromGitHub {
    owner = "cloudflare";
    repo = "gokey";
    tag = "v${version}";
    hash = "sha256-pvtRSWq/vXlyUShb61aiDlis9AiQnrA2PWycr1Zw0og=";
    hash = "sha256-tJ9nCHhKPrw7SRGsqAlo/tf3tBLF63+CevEXggZADlE=";
  };

  vendorHash = "sha256-qlP2tI6QQMjxP59zaXgx4mX9IWSrOKWmme717wDaUEc=";
  vendorHash = "sha256-Btac9Oi8efqRy+OH49Na3Y6RGehHEmGfvDo2/7EWPL4=";

  meta = with lib; {
    homepage = "https://github.com/cloudflare/gokey";
+0 −15
Original line number Diff line number Diff line
diff --git a/go.mod b/go.mod
index 50b6806..f23b2ec 100644
--- a/go.mod
+++ b/go.mod
@@ -1,8 +1,9 @@
 module github.com/cloudflare/gokey
 
-go 1.13
+go 1.17
 
 require (
 	golang.org/x/crypto v0.17.0
 	golang.org/x/term v0.15.0
+	golang.org/x/sys v0.15.0
 )