sq: 0.15.11 -> 0.16.0

This commit is contained in:
R. Ryantm 2022-12-20 00:21:56 +00:00
parent b10a520017
commit b2c370128e

View file

@ -1,18 +1,18 @@
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, sq }:
buildGoModule rec {
pname = "sq";
version = "0.15.11";
version = "0.16.0";
src = fetchFromGitHub {
owner = "neilotoole";
repo = pname;
rev = "v${version}";
sha256 = "sha256-sYaQb7MFeTgJ/WPuCuMYjLcgmO/FhMGgOvY1HfGh2ag=";
sha256 = "sha256-0BpQDlLWERm8UOcmxAVH5aWBGrcdV64YB7S+3etOtU0=";
};
nativeBuildInputs = [ installShellFiles ];
vendorSha256 = "sha256-P1NxcjRA0g9NK2EaEG5E9G2TywTp5uvHesQE7+EG4ag=";
vendorSha256 = "sha256-tzq22S3fuaxOIoXL1mMPV90El8cUwzm2XSaiDHIuc4g=";
# Some tests violates sandbox constraints.
doCheck = false;