We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87620ad commit 431ceb3Copy full SHA for 431ceb3
pkgs/by-name/ku/kuzu/package.nix
@@ -5,6 +5,7 @@
5
ninja,
6
python3,
7
fetchFromGitHub,
8
+ versionCheckHook,
9
}:
10
11
stdenv.mkDerivation (finalAttrs: {
@@ -30,6 +31,12 @@ stdenv.mkDerivation (finalAttrs: {
30
31
python3
32
];
33
34
+ nativeInstallCheckInputs = [
35
+ versionCheckHook
36
+ ];
37
+ doInstallCheck = true;
38
+ versionCheckProgramArg = [ "--version" ];
39
+
40
meta = {
41
changelog = "https://github.com/kuzudb/kuzu/releases/tag/v${finalAttrs.version}";
42
description = "Embeddable property graph database management system";
0 commit comments