immudb: 1.3.2 -> 1.4.0

This commit is contained in:
Mostly Void 2022-10-13 20:57:05 +05:30
parent b881869205
commit fec2375d1a
No known key found for this signature in database
GPG key ID: E2B7342D0CAA82C2

View file

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