mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
vector: make some more options override-able
Unfortunately, buildRustPackage isn't very flexible right now, and most of these attrs can't be overridden. This is needed for some general patch work, but isn't really long term sustainable. I plan on reverting this after Vector 0.6 is out. Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
2becf48fb5
commit
b964f4b421
1 changed files with 18 additions and 7 deletions
|
@ -6,20 +6,31 @@
|
|||
(if stdenv.isAarch64
|
||||
then [ "jemallocator" ]
|
||||
else [ "leveldb" "jemallocator" ])
|
||||
|
||||
# Unfortunately, buildRustPackage does not really support using overrideAttrs
|
||||
# on the underlying fields, because it doesn't pass them to stdenv.mkDerivation
|
||||
# as an attr. making it a parameter is the only way to do so. sigh
|
||||
|
||||
, version ? "0.5.0"
|
||||
|
||||
, srcRef ? {
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "0niyxlvphn3awrpfh1hbqy767cckgjzyjrkqjxj844czxhh1hhff";
|
||||
}
|
||||
|
||||
, cargoSha256 ? "0bdgan891hrah54g6aaysqizkxrfsbidnxihai0i7h7knzq9gsk5"
|
||||
, patches ? []
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "vector";
|
||||
version = "0.5.0";
|
||||
|
||||
inherit version cargoSha256 patches;
|
||||
src = fetchFromGitHub {
|
||||
owner = "timberio";
|
||||
repo = pname;
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "0niyxlvphn3awrpfh1hbqy767cckgjzyjrkqjxj844czxhh1hhff";
|
||||
owner = "timberio";
|
||||
repo = pname;
|
||||
inherit (srcRef) rev sha256;
|
||||
};
|
||||
|
||||
cargoSha256 = "0bdgan891hrah54g6aaysqizkxrfsbidnxihai0i7h7knzq9gsk5";
|
||||
buildInputs = [ openssl pkgconfig protobuf ]
|
||||
++ stdenv.lib.optional stdenv.isDarwin [ Security libiconv ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue