qdrant: 0.9.1 -> 0.11.2

+9 -3
+9 -3
pkgs/servers/search/qdrant/default.nix
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "qdrant"; 10 - version = "0.9.1"; 11 12 src = fetchFromGitHub { 13 owner = "qdrant"; 14 repo = "qdrant"; 15 rev = "refs/tags/v${version}"; 16 - sha256 = "sha256-rOIWiSpAqIUf2V9BMMTZqF/urz754pZV4yHav26dxqY="; 17 }; 18 19 - cargoSha256 = "sha256-ovHxtOYlzVsALw/4bhL9EcFXaKr6Bg/D0w6OPMCLZoQ="; 20 21 nativeBuildInputs = [ protobuf rustPlatform.bindgenHook ]; 22
··· 7 8 rustPlatform.buildRustPackage rec { 9 pname = "qdrant"; 10 + version = "0.11.2"; 11 12 src = fetchFromGitHub { 13 owner = "qdrant"; 14 repo = "qdrant"; 15 rev = "refs/tags/v${version}"; 16 + sha256 = "sha256-MT2k4k/g97iXVUCz1dYJdL+JBCLKTWqE2u2Yiuvd/nw="; 17 }; 18 19 + cargoSha256 = "sha256-86F7B+SKaAxu7c3kyYurI5jPnnbvtdD0jouNCzT0A50="; 20 + 21 + prePatch = lib.optionalString stdenv.isAarch64 '' 22 + substituteInPlace .cargo/config.toml \ 23 + --replace "[target.aarch64-unknown-linux-gnu]" "" \ 24 + --replace "linker = \"aarch64-linux-gnu-gcc\"" "" 25 + ''; 26 27 nativeBuildInputs = [ protobuf rustPlatform.bindgenHook ]; 28