tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
qdrant: 0.9.1 -> 0.11.2
Mostly Void
3 years ago
68efd929
8fb7b99c
+9
-3
1 changed file
expand all
collapse all
unified
split
pkgs
servers
search
qdrant
default.nix
+9
-3
pkgs/servers/search/qdrant/default.nix
···
7
7
8
8
rustPlatform.buildRustPackage rec {
9
9
pname = "qdrant";
10
10
-
version = "0.9.1";
10
10
+
version = "0.11.2";
11
11
12
12
src = fetchFromGitHub {
13
13
owner = "qdrant";
14
14
repo = "qdrant";
15
15
rev = "refs/tags/v${version}";
16
16
-
sha256 = "sha256-rOIWiSpAqIUf2V9BMMTZqF/urz754pZV4yHav26dxqY=";
16
16
+
sha256 = "sha256-MT2k4k/g97iXVUCz1dYJdL+JBCLKTWqE2u2Yiuvd/nw=";
17
17
};
18
18
19
19
-
cargoSha256 = "sha256-ovHxtOYlzVsALw/4bhL9EcFXaKr6Bg/D0w6OPMCLZoQ=";
19
19
+
cargoSha256 = "sha256-86F7B+SKaAxu7c3kyYurI5jPnnbvtdD0jouNCzT0A50=";
20
20
+
21
21
+
prePatch = lib.optionalString stdenv.isAarch64 ''
22
22
+
substituteInPlace .cargo/config.toml \
23
23
+
--replace "[target.aarch64-unknown-linux-gnu]" "" \
24
24
+
--replace "linker = \"aarch64-linux-gnu-gcc\"" ""
25
25
+
'';
20
26
21
27
nativeBuildInputs = [ protobuf rustPlatform.bindgenHook ];
22
28