Merge pull request #195822 from dit7ya/immudb-update

immudb: 1.3.2 -> 1.4.0
This commit is contained in:
Mario Rodas 2022-10-29 05:22:41 -05:00 committed by GitHub
commit f2a71f895e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,21 +6,21 @@
}:
let
webconsoleVersion = "1.0.17";
webconsoleVersion = "1.0.18";
webconsoleDist = fetchzip {
url = "https://github.com/codenotary/immudb-webconsole/releases/download/v${webconsoleVersion}/immudb-webconsole.tar.gz";
sha256 = "sha256-hFSvPwSRXyrSBYktTOwIRa1+aH+mX/scDYDokvZuW1s=";
sha256 = "sha256-4BhTK+gKO8HW1CelGa30THpfkqfqFthK+b7p9QWl4Pw=";
};
in
buildGoModule rec {
pname = "immudb";
version = "1.3.2";
version = "1.4.0";
src = fetchFromGitHub {
owner = "codenotary";
repo = pname;
rev = "v${version}";
sha256 = "sha256-lcKjeqZeTQQMhVjnWNP3c+HanI/eenfUbpZJAo5FEkM=";
sha256 = "sha256-L8RvbMmq9DPJ2FvxlCE1KC8TRhmZA5CrzUPmr9JNy0Q=";
};
preBuild = ''
@ -29,9 +29,7 @@ buildGoModule rec {
go generate -tags webconsole ./webconsole
'';
proxyVendor = true; # check if this is needed anymore when updating
vendorSha256 = "sha256-gMpkV0XqY6wh7s0lndIdCoYlvVBrMk7/lvyDVqnJ66c=";
vendorSha256 = "sha256-k2OwwGjuyfM3QIRz+/DgGD0xUYor4TDmfBmcQOkcA3A=";
nativeBuildInputs = [ installShellFiles ];