2022-09-07 08:35:58 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchzip
|
|
|
|
, installShellFiles
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2022-10-13 15:27:05 +00:00
|
|
|
webconsoleVersion = "1.0.18";
|
2022-09-07 08:35:58 +00:00
|
|
|
webconsoleDist = fetchzip {
|
|
|
|
url = "https://github.com/codenotary/immudb-webconsole/releases/download/v${webconsoleVersion}/immudb-webconsole.tar.gz";
|
2022-10-13 15:27:05 +00:00
|
|
|
sha256 = "sha256-4BhTK+gKO8HW1CelGa30THpfkqfqFthK+b7p9QWl4Pw=";
|
2022-09-07 08:35:58 +00:00
|
|
|
};
|
|
|
|
in
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "immudb";
|
2024-08-27 19:09:01 +00:00
|
|
|
version = "1.9.5";
|
2022-09-07 08:35:58 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "codenotary";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-08-27 19:09:01 +00:00
|
|
|
sha256 = "sha256-XKioPk0Rv+I916OLInJEtOaDV9KcBMWSHmPOq2k3LTQ=";
|
2022-09-07 08:35:58 +00:00
|
|
|
};
|
|
|
|
|
2024-08-27 19:09:01 +00:00
|
|
|
postPatch = ''
|
|
|
|
EXPECTED_WEBCONSOLE_STRING='DEFAULT_WEBCONSOLE_VERSION=${webconsoleVersion}'
|
|
|
|
if ! grep -F "$EXPECTED_WEBCONSOLE_STRING" Makefile ; then
|
|
|
|
echo "Did not find $EXPECTED_WEBCONSOLE_STRING in Makefile. " \
|
|
|
|
"Our webconsole version may need bumping (or the Makefile may have changed)"
|
|
|
|
exit 3
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
2022-09-07 08:35:58 +00:00
|
|
|
preBuild = ''
|
|
|
|
mkdir -p webconsole/dist
|
|
|
|
cp -r ${webconsoleDist}/* ./webconsole/dist
|
|
|
|
go generate -tags webconsole ./webconsole
|
|
|
|
'';
|
|
|
|
|
2024-01-01 05:51:50 +00:00
|
|
|
vendorHash = "sha256-6DHmJrE+xkf8K38a8h1VSD33W6qj594Q5bJJXnfSW0Q=";
|
2022-09-07 08:35:58 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
tags = [ "webconsole" ];
|
|
|
|
|
|
|
|
ldflags = [ "-X github.com/codenotary/immudb/cmd/version.Version=${version}" ];
|
|
|
|
|
|
|
|
subPackages = [
|
|
|
|
"cmd/immudb"
|
|
|
|
"cmd/immuclient"
|
|
|
|
"cmd/immuadmin"
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2022-09-16 05:50:23 +00:00
|
|
|
mkdir -p share/completions
|
|
|
|
for executable in immudb immuclient immuadmin; do
|
|
|
|
for shell in bash fish zsh; do
|
|
|
|
$out/bin/$executable completion $shell > share/completions/$executable.$shell
|
|
|
|
installShellCompletion share/completions/$executable.$shell
|
|
|
|
done
|
|
|
|
done
|
|
|
|
'';
|
2022-09-07 08:35:58 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Immutable database based on zero trust, SQL and Key-Value, tamperproof, data change history";
|
|
|
|
homepage = "https://github.com/codenotary/immudb";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ dit7ya ];
|
|
|
|
};
|
|
|
|
}
|