2022-12-06 14:47:02 +01:00
|
|
|
# Nix helpers for projects under //tvix
|
2022-12-22 15:44:32 +01:00
|
|
|
{ pkgs, depot, ... }:
|
2022-12-06 14:47:02 +01:00
|
|
|
|
2023-01-06 18:20:44 +01:00
|
|
|
let
|
|
|
|
# crate override for crates that need protobuf
|
|
|
|
protobufDep = prev: (prev.nativeBuildInputs or [ ]) ++ [ pkgs.protobuf ];
|
|
|
|
in
|
2022-12-06 14:47:02 +01:00
|
|
|
{
|
2022-12-07 12:05:02 +01:00
|
|
|
# Load the crate2nix crate tree.
|
|
|
|
crates = import ./Cargo.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
nixpkgs = pkgs.path;
|
2023-01-06 18:20:44 +01:00
|
|
|
|
|
|
|
defaultCrateOverrides = pkgs.defaultCrateOverrides // {
|
|
|
|
prost-build = prev: {
|
|
|
|
nativeBuildInputs = protobufDep prev;
|
|
|
|
};
|
|
|
|
|
|
|
|
tonic-reflection = prev: {
|
|
|
|
nativeBuildInputs = protobufDep prev;
|
|
|
|
};
|
|
|
|
|
|
|
|
tvix-store = prev: {
|
|
|
|
PROTO_ROOT = depot.tvix.store.protos;
|
|
|
|
nativeBuildInputs = protobufDep prev;
|
|
|
|
};
|
|
|
|
|
|
|
|
tvix-store-bin = prev: {
|
|
|
|
PROTO_ROOT = depot.tvix.store.protos;
|
|
|
|
nativeBuildInputs = protobufDep prev;
|
|
|
|
};
|
|
|
|
};
|
2022-12-07 12:05:02 +01:00
|
|
|
};
|
2022-12-08 14:55:47 +01:00
|
|
|
|
2022-12-22 15:44:32 +01:00
|
|
|
# Run crate2nix generate in the current working directory, then
|
|
|
|
# format the generated file with depotfmt.
|
|
|
|
crate2nixGenerate = pkgs.writeShellScriptBin "crate2nix-generate" ''
|
|
|
|
${pkgs.crate2nix}/bin/crate2nix generate
|
|
|
|
${depot.tools.depotfmt}/bin/depotfmt Cargo.nix
|
|
|
|
'';
|
|
|
|
|
2022-12-08 14:55:47 +01:00
|
|
|
# Provide a shell for the combined dependencies of all Tvix Rust
|
|
|
|
# projects. Note that as this is manually maintained it may be
|
|
|
|
# lacking something, but it is required for some people's workflows.
|
|
|
|
#
|
|
|
|
# This shell can be entered with e.g. `mg shell //tvix:shell`.
|
|
|
|
shell = pkgs.mkShell {
|
|
|
|
name = "tvix-rust-dev-env";
|
|
|
|
packages = [
|
|
|
|
pkgs.buf-language-server
|
|
|
|
pkgs.cargo
|
|
|
|
pkgs.clippy
|
2022-11-26 17:35:15 +01:00
|
|
|
pkgs.evans
|
2022-12-08 14:55:47 +01:00
|
|
|
pkgs.rust-analyzer
|
|
|
|
pkgs.rustc
|
|
|
|
pkgs.rustfmt
|
|
|
|
pkgs.protobuf
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2023-02-01 18:27:57 +01:00
|
|
|
export = (pkgs.runCommandLocal "export-tvix" { } ''
|
|
|
|
echo "carrier for repo export extra-step" > $out
|
|
|
|
'').overrideAttrs (_: {
|
|
|
|
meta.ci.extraSteps.github = depot.tools.releases.filteredGitPush {
|
|
|
|
filter = ":workspace=views/tvix";
|
|
|
|
remote = "git@github.com:tvlfyi/tvix.git";
|
|
|
|
ref = "refs/heads/canon";
|
|
|
|
};
|
|
|
|
});
|
2023-02-01 18:13:12 +01:00
|
|
|
|
2023-02-01 18:27:57 +01:00
|
|
|
meta.ci.targets = [ "shell" "export" ];
|
2022-12-06 14:47:02 +01:00
|
|
|
}
|