ssh-tpm-agent: 0.7.0 -> 0.8.0 (#394097)

authored by Adam C. Stephens and committed by GitHub 69ea4392 6701894f

+16 -4
+16 -4
pkgs/by-name/ss/ssh-tpm-agent/package.nix
··· 3 buildGoModule, 4 fetchFromGitHub, 5 nix-update-script, 6 openssl, 7 }: 8 9 buildGoModule rec { 10 pname = "ssh-tpm-agent"; 11 - version = "0.7.0"; 12 13 src = fetchFromGitHub { 14 owner = "Foxboron"; 15 repo = "ssh-tpm-agent"; 16 - rev = "v${version}"; 17 - hash = "sha256-yK7G+wZIn+kJazKOFOs8EYlRWZkCQuT0qZfmdqbcOnM="; 18 }; 19 20 proxyVendor = true; 21 22 - vendorHash = "sha256-njKyBfTG/QCPBBsj3Aom42cv2XqLv4YeS4DhwNQNaLA="; 23 24 buildInputs = [ 25 openssl 26 ]; 27 28 passthru.updateScript = nix-update-script { }; 29
··· 3 buildGoModule, 4 fetchFromGitHub, 5 nix-update-script, 6 + openssh, 7 openssl, 8 }: 9 10 buildGoModule rec { 11 pname = "ssh-tpm-agent"; 12 + version = "0.8.0"; 13 14 src = fetchFromGitHub { 15 owner = "Foxboron"; 16 repo = "ssh-tpm-agent"; 17 + tag = "v${version}"; 18 + hash = "sha256-CSxZctiQ/d4gzCUtfx9Oetb8s0XpHf3MPH/H0XaaVgg="; 19 }; 20 21 proxyVendor = true; 22 23 + vendorHash = "sha256-84ZB1B+RczJS08UToCWvvVfWrD62IQxy0XoBwn+wBkc="; 24 25 buildInputs = [ 26 openssl 27 ]; 28 + 29 + nativeCheckInputs = [ 30 + openssh 31 + ]; 32 + 33 + # disable broken tests, see https://github.com/NixOS/nixpkgs/pull/394097 34 + preCheck = '' 35 + rm cmd/scripts_test.go 36 + substituteInPlace internal/keyring/keyring_test.go --replace-fail ENOKEY ENOENT 37 + substituteInPlace internal/keyring/threadkeyring_test.go --replace-fail ENOKEY ENOENT 38 + ''; 39 40 passthru.updateScript = nix-update-script { }; 41