Unverified Commit ac2ff9a5 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

gokey: 0.1.2-unstable-2023-11-16 -> 0.1.3 (#346749)

parents c069368e d64df4f6
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule {
buildGoModule rec {
  pname = "gokey";
  version = "0.1.2-unstable-2023-11-16";
  version = "0.1.3";

  patches = [ ./version.patch ];

  src = fetchFromGitHub {
    owner = "cloudflare";
    repo = "gokey";
    rev = "26fcef24d123e0eaf7b92224e6880f529f94aa9f";
    hash = "sha256-nt4fO8NKYfRkpoC1z8zDrEZC7+fo6sU/ZOHCMHIAT58=";
    rev = "refs/tags/v${version}";
    hash = "sha256-pvtRSWq/vXlyUShb61aiDlis9AiQnrA2PWycr1Zw0og=";
  };

  vendorHash = "sha256-ZDCoRE2oP8ANsu7jfLm3BMLzXdsq1dhsEigvwWgKk54=";
  vendorHash = "sha256-qlP2tI6QQMjxP59zaXgx4mX9IWSrOKWmme717wDaUEc=";

  meta = with lib; {
    homepage = "https://github.com/cloudflare/gokey";
+15 −0
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
 )