a8d2d6e97e
Change-Id: I922caae2ec3f87a7f3a5dcc8e9d366f0e71ce900 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12300 Tested-by: BuildkiteCI Autosubmit: Ilan Joselevich <personal@ilanjoselevich.com> Reviewed-by: flokli <flokli@flokli.de>
15 lines
518 B
Nix
15 lines
518 B
Nix
{ pkgs, depot, lib, ... }:
|
|
|
|
(pkgs.callPackage ./Cargo.nix {
|
|
defaultCrateOverrides = (depot.tvix.utils.defaultCrateOverridesForPkgs pkgs) // {
|
|
crunch-v2 = prev: {
|
|
src = depot.tvix.utils.filterRustCrateSrc rec {
|
|
root = prev.src.origSrc;
|
|
extraFileset = lib.fileset.fileFilter (f: f.hasExt "proto") root;
|
|
};
|
|
nativeBuildInputs = [ pkgs.protobuf ];
|
|
};
|
|
};
|
|
}).rootCrate.build.overrideAttrs {
|
|
meta.ci.extraSteps.crate2nix-check = depot.tvix.utils.mkCrate2nixCheck ./Cargo.nix;
|
|
}
|