upterm: 0.7.3 -> 0.8.2

Update upterm to version 0.8.2 and also use Go version 1.18 since this
is the minimum required version.

Signed-off-by: Felix Singer <felixsinger@posteo.net>
main
Felix Singer 2 years ago
parent 723af2912b
commit be99d5c1d5
  1. 8
      pkgs/tools/misc/upterm/default.nix

@ -1,18 +1,18 @@
{ lib { lib
, buildGoModule , buildGo118Module
, fetchFromGitHub , fetchFromGitHub
, installShellFiles , installShellFiles
}: }:
buildGoModule rec { buildGo118Module rec {
pname = "upterm"; pname = "upterm";
version = "0.7.3"; version = "0.8.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "owenthereal"; owner = "owenthereal";
repo = "upterm"; repo = "upterm";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-eEzFqKYhsG5e1DVLWJq08NM9xyfn1yPNV0NIgOErj4E="; hash = "sha256-JcUFsj7+Hu++izyxozttyxTGW51vBfgNSvAa/AIrsvs=";
}; };
vendorSha256 = null; vendorSha256 = null;

Loading…
Cancel
Save