about summary refs log tree commit diff
path: root/pkgs/servers/matrix-conduit
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2024-04-22 13:02:14 +0200
committerJonas Heinrich <onny@project-insanity.org>2024-04-22 13:02:14 +0200
commitf7709cf1b33a050044bde96d66d22f8472fd080c (patch)
treeb9cb7d3cea51724b328a769bd4cf78ddd441d90a /pkgs/servers/matrix-conduit
parentdc1287e4a6a541b5830c35c7d52038338e992549 (diff)
treewide: switch from rocksdb -> rocksdb_8_3
Diffstat (limited to 'pkgs/servers/matrix-conduit')
-rw-r--r--pkgs/servers/matrix-conduit/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/servers/matrix-conduit/default.nix b/pkgs/servers/matrix-conduit/default.nix
index cc162e6373d67..1eb7500222d35 100644
--- a/pkgs/servers/matrix-conduit/default.nix
+++ b/pkgs/servers/matrix-conduit/default.nix
@@ -6,10 +6,13 @@
 , stdenv
 , darwin
 , nixosTests
-, rocksdb
+, rocksdb_8_3
 , rust-jemalloc-sys
 }:
 
+let
+  rocksdb = rocksdb_8_3;
+in
 rustPlatform.buildRustPackage rec {
   pname = "matrix-conduit";
   version = "0.6.0";