garble: 0.13.0 -> 0.14.1 (#380531)

This commit is contained in:
Peder Bergebakken Sundt 2025-02-17 00:12:32 +01:00 committed by GitHub
commit 4809c8af16
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,6 @@
stdenv, stdenv,
buildGoModule, buildGoModule,
fetchFromGitHub, fetchFromGitHub,
diffoscope,
git, git,
versionCheckHook, versionCheckHook,
replaceVars, replaceVars,
@ -12,13 +11,13 @@
buildGoModule rec { buildGoModule rec {
pname = "garble"; pname = "garble";
version = "0.13.0"; version = "0.14.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "burrowers"; owner = "burrowers";
repo = "garble"; repo = "garble";
tag = "v${version}"; tag = "v${version}";
hash = "sha256-FtI5lAeqjRPN47iC46bcEsRLQb7mItw4svsnLkRpNxY="; hash = "sha256-zS/K2kOpWhJmr0NuWSjEjNXV8ILt81yLIQWSPDuMwt8=";
}; };
__darwinAllowLocalNetworking = true; __darwinAllowLocalNetworking = true;
@ -38,11 +37,10 @@ buildGoModule rec {
"TestScript/gogarble" "TestScript/gogarble"
]; ];
vendorHash = "sha256-mSdajYiMEg2ik0ocfmHK+XddEss1qLu6rDwzjocaaW0="; vendorHash = "sha256-xxG1aQrALVuJ7oVn+Z+sH655eFQ7rcYFmymGCUZD1uU=";
# Used for some of the tests. # Used for some of the tests.
nativeCheckInputs = [ nativeCheckInputs = [
diffoscope
git git
versionCheckHook versionCheckHook
]; ];