mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-24 00:32:15 +00:00
Before the changes intorducing the new wasmtime bindings we relied on an downloaded static library libwasmtime.a. Now that the bindings are introduced, we do not rely on it anymore, so all references to it can be removed.
23 lines
617 B
Nix
23 lines
617 B
Nix
nixpkgs:
|
|
final: prev:
|
|
|
|
let
|
|
patched = pkg: patches:
|
|
pkg.overrideAttrs (old: {
|
|
patches = (old.patches or []) ++ (map final.fetchurl patches);
|
|
});
|
|
in {
|
|
gdbWithGreenThreadSupport = patched prev.gdb [{
|
|
url = "https://github.com/cmm/gnu-binutils/commit/1c52ca4b27e93e1684c68eeaee44ca3e36648410.patch";
|
|
sha256 = "sha256-MwhWu4mK0UoZM887fXeaPyNbRmP3Q4Ddq3f8224TELg=";
|
|
}];
|
|
|
|
zstdStatic = final.callPackage "${nixpkgs}/pkgs/tools/compression/zstd" {
|
|
static = true;
|
|
buildContrib = false;
|
|
doCheck = false;
|
|
};
|
|
|
|
scylla-driver = final.callPackage ./pkg/upstreamable/python-driver { };
|
|
}
|