lol

matrix-conduit: link against system rocksdb

authored by

Yureka and committed by
Peter Hoeg
aeea7159 1f6f9d95

+4 -1
+4 -1
pkgs/servers/matrix-conduit/default.nix
··· 1 - { lib, rustPlatform, fetchFromGitLab, stdenv, darwin, nixosTests }: 1 + { lib, rustPlatform, fetchFromGitLab, stdenv, darwin, nixosTests, rocksdb_6_23 }: 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "matrix-conduit"; ··· 29 29 buildInputs = lib.optionals stdenv.isDarwin [ 30 30 darwin.apple_sdk.frameworks.Security 31 31 ]; 32 + 33 + ROCKSDB_INCLUDE_DIR = "${rocksdb_6_23}/include"; 34 + ROCKSDB_LIB_DIR = "${rocksdb_6_23}/lib"; 32 35 33 36 # tests failed on x86_64-darwin with SIGILL: illegal instruction 34 37 doCheck = !(stdenv.isx86_64 && stdenv.isDarwin);