diff options
author | Alex Auvolat <alex@adnab.me> | 2022-09-20 17:54:41 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-09-20 17:54:41 +0200 |
commit | e89f8806949f4b389f8848454e293b7b5ba6d91a (patch) | |
tree | 87074faa199decff77f9d5a6cc8bcec21184f3e8 /nix | |
parent | fc8550864898a7a24e71dfb29027fd9b39305eab (diff) | |
download | garage-e89f8806949f4b389f8848454e293b7b5ba6d91a.tar.gz garage-e89f8806949f4b389f8848454e293b7b5ba6d91a.zip |
Enable k2v feature flag in CIrm
Diffstat (limited to 'nix')
-rw-r--r-- | nix/compile.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/compile.nix b/nix/compile.nix index 4382a2be..adb07886 100644 --- a/nix/compile.nix +++ b/nix/compile.nix @@ -137,7 +137,7 @@ let /* [2] */ hardeningDisable = [ "pie" ]; }; overrideArgs = old: { - /* [4] */ features = [ "bundled-libs" "sled" "metrics" ] + /* [4] */ features = [ "bundled-libs" "sled" "metrics" "k2v" ] ++ (if release then [ "kubernetes-discovery" "telemetry-otlp" "lmdb" "sqlite" ] else []); }; }) |