2022-12-06 14:47:02 +01:00
|
|
|
# Nix helpers for projects under //tvix
|
2023-08-19 16:46:36 +02:00
|
|
|
{ pkgs, lib, 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
|
2023-10-16 15:32:37 +02:00
|
|
|
protobufDep = prev: (prev.nativeBuildInputs or [ ]) ++ [ pkgs.buildPackages.protobuf ];
|
2023-10-16 15:52:31 +02:00
|
|
|
iconvDarwinDep = lib.optional pkgs.stdenv.isDarwin pkgs.libiconv;
|
2023-03-14 20:16:45 +01:00
|
|
|
|
2023-10-16 17:14:11 +02:00
|
|
|
# On Darwin, some crates producing binaries need to be able to link against security.
|
|
|
|
securityDarwinDep = lib.optional pkgs.stdenv.isDarwin pkgs.buildPackages.darwin.apple_sdk.frameworks.Security;
|
|
|
|
|
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
|
|
|
|
2023-09-10 13:03:32 +02:00
|
|
|
# Hack to fix Darwin build
|
|
|
|
# See https://github.com/NixOS/nixpkgs/issues/218712
|
|
|
|
buildRustCrateForPkgs = pkgs:
|
|
|
|
if pkgs.stdenv.isDarwin then
|
|
|
|
let
|
|
|
|
buildRustCrate = pkgs.buildRustCrate;
|
|
|
|
buildRustCrate_ = args: buildRustCrate args // { dontStrip = true; };
|
|
|
|
override = o: args: buildRustCrate.override o (args // { dontStrip = true; });
|
|
|
|
in
|
|
|
|
pkgs.makeOverridable override { }
|
|
|
|
else pkgs.buildRustCrate;
|
|
|
|
|
2023-01-06 18:20:44 +01:00
|
|
|
defaultCrateOverrides = pkgs.defaultCrateOverrides // {
|
2023-09-10 13:03:32 +02:00
|
|
|
zstd-sys = prev: {
|
2023-10-16 15:52:31 +02:00
|
|
|
nativeBuildInputs = prev.nativeBuildInputs or [ ];
|
|
|
|
buildInputs = prev.buildInputs or [ ] ++ iconvDarwinDep;
|
2023-09-10 13:03:32 +02:00
|
|
|
};
|
|
|
|
|
2023-01-06 18:20:44 +01:00
|
|
|
prost-build = prev: {
|
|
|
|
nativeBuildInputs = protobufDep prev;
|
|
|
|
};
|
|
|
|
|
|
|
|
tonic-reflection = prev: {
|
|
|
|
nativeBuildInputs = protobufDep prev;
|
|
|
|
};
|
|
|
|
|
2023-12-09 09:49:47 +01:00
|
|
|
tvix-build = prev: {
|
2023-12-09 14:49:56 +01:00
|
|
|
PROTO_ROOT = depot.tvix.build.protos.protos;
|
2023-12-09 09:49:47 +01:00
|
|
|
nativeBuildInputs = protobufDep prev;
|
|
|
|
};
|
|
|
|
|
2023-09-21 21:32:44 +02:00
|
|
|
tvix-castore = prev: {
|
2023-12-09 14:49:56 +01:00
|
|
|
PROTO_ROOT = depot.tvix.castore.protos.protos;
|
2023-09-21 21:32:44 +02:00
|
|
|
nativeBuildInputs = protobufDep prev;
|
|
|
|
};
|
|
|
|
|
2023-10-16 17:14:11 +02:00
|
|
|
tvix-cli = prev: {
|
|
|
|
buildInputs = prev.buildInputs or [ ] ++ securityDarwinDep;
|
|
|
|
};
|
|
|
|
|
2023-01-06 18:20:44 +01:00
|
|
|
tvix-store = prev: {
|
2023-12-09 14:49:56 +01:00
|
|
|
PROTO_ROOT = depot.tvix.store.protos.protos;
|
2023-01-06 18:20:44 +01:00
|
|
|
nativeBuildInputs = protobufDep prev;
|
2023-10-16 15:52:31 +02:00
|
|
|
# fuse-backend-rs uses DiskArbitration framework to handle mount/unmount on Darwin
|
|
|
|
buildInputs = prev.buildInputs or [ ]
|
2023-10-16 17:14:11 +02:00
|
|
|
++ securityDarwinDep
|
2023-10-16 15:52:31 +02:00
|
|
|
++ lib.optional pkgs.stdenv.isDarwin pkgs.buildPackages.darwin.apple_sdk.frameworks.DiskArbitration;
|
2023-01-06 18:20:44 +01:00
|
|
|
};
|
|
|
|
};
|
2022-12-07 12:05:02 +01:00
|
|
|
};
|
2022-12-08 14:55:47 +01:00
|
|
|
|
2023-08-19 16:46:36 +02:00
|
|
|
# Cargo dependencies to be used with nixpkgs rustPlatform functions.
|
|
|
|
cargoDeps = pkgs.rustPlatform.importCargoLock {
|
|
|
|
lockFile = ./Cargo.lock;
|
|
|
|
# Extract the hashes from `crates` / Cargo.nix, we already get them from cargo2nix.
|
|
|
|
# This returns an attribute set containing "${crateName}-${version}" as key,
|
|
|
|
# and the outputHash as value.
|
|
|
|
outputHashes = builtins.listToAttrs
|
|
|
|
(map
|
|
|
|
(crateName:
|
|
|
|
(lib.nameValuePair "${crateName}-${crates.internal.crates.${crateName}.version}" crates.internal.crates.${crateName}.src.outputHash)
|
|
|
|
) [
|
|
|
|
"test-generator"
|
|
|
|
"wu-manber"
|
|
|
|
]);
|
|
|
|
};
|
2023-12-05 21:08:45 +01:00
|
|
|
|
|
|
|
# The cleaned sources.
|
|
|
|
src = depot.third_party.gitignoreSource ./.;
|
|
|
|
|
2022-12-22 15:44:32 +01:00
|
|
|
# Run crate2nix generate in the current working directory, then
|
|
|
|
# format the generated file with depotfmt.
|
2023-12-07 12:49:07 +01:00
|
|
|
crate2nix-generate = pkgs.writeShellScriptBin "crate2nix-generate" ''
|
2023-09-26 08:50:23 +02:00
|
|
|
${pkgs.crate2nix}/bin/crate2nix generate --all-features
|
2022-12-22 15:44:32 +01:00
|
|
|
${depot.tools.depotfmt}/bin/depotfmt Cargo.nix
|
|
|
|
'';
|
|
|
|
|
2023-12-09 14:49:56 +01:00
|
|
|
# Target containing *all* tvix proto files.
|
|
|
|
# Useful for workspace-wide cargo invocations (doc, clippy)
|
|
|
|
protos = pkgs.symlinkJoin {
|
|
|
|
name = "tvix-all-protos";
|
|
|
|
paths = [
|
|
|
|
depot.tvix.build.protos.protos
|
|
|
|
depot.tvix.castore.protos.protos
|
|
|
|
depot.tvix.store.protos.protos
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2023-12-07 12:49:07 +01:00
|
|
|
in
|
|
|
|
{
|
2023-12-09 14:49:56 +01:00
|
|
|
inherit crates crate2nix-generate protos;
|
2023-12-07 12:49:07 +01:00
|
|
|
|
|
|
|
# Run crate2nix generate, ensure the output doesn't differ afterwards
|
|
|
|
# (and doesn't fail).
|
|
|
|
#
|
|
|
|
# Currently this re-downloads every crate every time
|
|
|
|
# crate2nix-check (but not crate2nix) is built.
|
|
|
|
# TODO(amjoseph): be less wasteful with bandwidth.
|
|
|
|
#
|
|
|
|
crate2nix-check =
|
|
|
|
let
|
|
|
|
outputHashAlgo = "sha256";
|
|
|
|
in
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
|
|
inherit src;
|
|
|
|
|
|
|
|
# Important: we include the hash of the Cargo.lock file and
|
|
|
|
# Cargo.nix file in the derivation name. This forces the FOD
|
|
|
|
# to be rebuilt/reverified whenever either of them changes.
|
|
|
|
name = "tvix-crate2nix-check-" +
|
|
|
|
(builtins.substring 0 8 (builtins.hashFile "sha256" ./Cargo.lock)) +
|
|
|
|
"-" +
|
|
|
|
(builtins.substring 0 8 (builtins.hashFile "sha256" ./Cargo.nix));
|
|
|
|
|
|
|
|
nativeBuildInputs = with pkgs; [ git cacert cargo ];
|
|
|
|
buildPhase = ''
|
|
|
|
export CARGO_HOME=$(mktemp -d)
|
|
|
|
|
|
|
|
# The following command can be omitted, in which case
|
|
|
|
# crate2nix-generate will run it automatically, but won't show the
|
|
|
|
# output, which makes it look like the build is somehow "stuck" for a
|
|
|
|
# minute or two.
|
|
|
|
cargo metadata > /dev/null
|
|
|
|
|
|
|
|
# running this command counteracts depotfmt brokenness
|
|
|
|
git init
|
|
|
|
|
|
|
|
${crate2nix-generate}/bin/crate2nix-generate
|
|
|
|
|
|
|
|
# technically unnecessary, but provides more-helpful output in case of error
|
|
|
|
diff -ur Cargo.nix ${src}/Cargo.nix
|
|
|
|
|
|
|
|
# the FOD hash will check that the (re-)generated Cargo.nix matches the committed Cargo.nix
|
|
|
|
cp Cargo.nix $out
|
|
|
|
'';
|
|
|
|
|
|
|
|
# This is an FOD in order to allow `cargo` to perform network access.
|
|
|
|
outputHashMode = "flat";
|
|
|
|
inherit outputHashAlgo;
|
|
|
|
outputHash = builtins.hashFile outputHashAlgo ./Cargo.nix;
|
|
|
|
env.SSL_CERT_FILE = "${pkgs.cacert.out}/etc/ssl/certs/ca-bundle.crt";
|
|
|
|
};
|
|
|
|
|
2023-09-07 16:51:34 +02:00
|
|
|
# Provide the Tvix logo in both .webp and .png format.
|
|
|
|
logo = pkgs.runCommand "logo"
|
|
|
|
{
|
|
|
|
nativeBuildInputs = [ pkgs.imagemagick ];
|
|
|
|
} ''
|
|
|
|
mkdir -p $out
|
|
|
|
cp ${./logo.webp} $out/logo.webp
|
|
|
|
convert $out/logo.webp $out/logo.png
|
|
|
|
'';
|
|
|
|
|
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`.
|
refactor(tvix,views/tvix): move shell into separate file
So far, we provided a custom `default.nix` in the root of the tvix josh
workspace, which re-defined the shell attribute from `tvix/default.nix`.
Some of the recent fixes, e.g. the MacOS-specific additions to the list
of dependencies however didn't get ported over to this file, and in
general, it's quite annoying to have two different places for these
things.
Initially I explored the idea of moving this default.nix file to a
default-depot.nix file in the josh worktree only, and then "polyfill"
some of the dependencies, or set up readTree in the josh workspace too,
but it turned out to pull in too many dependencies to be worth
the effort (nix.sparseTree, tools.depotfmt, crate2nix overlay,
third_party.gitignoreSource).
I now took a different approach - moving the definition of the `shell`
attribute from `tvix/default.nix` to its own `shell.nix` file, which is
imported from `tvix/default.nix` in regular depot usecases.
Josh workspace consumers only see the `shell.nix`, which can be used
in a self-contained fashion, the other `default.nix` is gone entirely,
and we update the workspace file to also not show `tvix/default.nix` at
the root either, so running `nix-shell` and then `cargo build` should
still work.
Change-Id: I6cb54d45d150c597612530ba44bc578f9d7f9120
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9556
Tested-by: BuildkiteCI
Reviewed-by: Connor Brewster <cbrewster@hey.com>
Autosubmit: flokli <flokli@flokli.de>
2023-10-07 05:40:24 +02:00
|
|
|
# This is a separate file, so it can be used individually in the tvix josh
|
|
|
|
# workspace too.
|
|
|
|
shell = (import ./shell.nix { inherit pkgs; });
|
2022-12-08 14:55:47 +01:00
|
|
|
|
2023-08-19 16:57:14 +02:00
|
|
|
# Build the Rust documentation for publishing on docs.tvix.dev.
|
2023-03-14 20:16:45 +01:00
|
|
|
rust-docs = pkgs.stdenv.mkDerivation {
|
2023-12-05 21:08:45 +01:00
|
|
|
inherit cargoDeps src;
|
2023-03-14 20:16:45 +01:00
|
|
|
name = "tvix-rust-docs";
|
2023-12-09 14:49:56 +01:00
|
|
|
PROTO_ROOT = protos;
|
2023-03-14 20:16:45 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
|
|
cargo
|
2023-05-28 09:22:08 +02:00
|
|
|
pkg-config
|
|
|
|
protobuf
|
2023-03-14 20:16:45 +01:00
|
|
|
rustc
|
2023-05-28 09:22:08 +02:00
|
|
|
rustPlatform.cargoSetupHook
|
2023-10-16 15:52:31 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
pkgs.fuse
|
2023-09-10 13:03:32 +02:00
|
|
|
] ++ iconvDarwinDep;
|
2023-03-14 20:16:45 +01:00
|
|
|
|
|
|
|
buildPhase = ''
|
2023-03-14 22:20:27 +01:00
|
|
|
cargo doc --document-private-items
|
2023-03-14 20:16:45 +01:00
|
|
|
mv target/doc $out
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2023-08-19 17:09:11 +02:00
|
|
|
# Run cargo clippy. We run it with -Dwarnings, so warnings cause a nonzero
|
|
|
|
# exit code.
|
|
|
|
clippy = pkgs.stdenv.mkDerivation {
|
2023-12-05 21:08:45 +01:00
|
|
|
inherit cargoDeps src;
|
2023-08-19 17:09:11 +02:00
|
|
|
name = "tvix-clippy";
|
2023-12-09 14:49:56 +01:00
|
|
|
PROTO_ROOT = protos;
|
2023-08-19 17:09:11 +02:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
pkgs.fuse
|
|
|
|
];
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
|
|
cargo
|
|
|
|
clippy
|
|
|
|
pkg-config
|
|
|
|
protobuf
|
|
|
|
rustc
|
|
|
|
rustPlatform.cargoSetupHook
|
|
|
|
];
|
|
|
|
|
2023-12-09 12:08:31 +01:00
|
|
|
buildPhase = "cargo clippy --tests --all-features -- -Dwarnings | tee $out";
|
2023-08-19 17:09:11 +02:00
|
|
|
};
|
|
|
|
|
2023-09-21 21:32:44 +02:00
|
|
|
meta.ci.targets = [
|
2023-08-19 17:09:11 +02:00
|
|
|
"clippy"
|
2023-12-07 12:49:07 +01:00
|
|
|
"crate2nix-check"
|
2023-09-21 21:32:44 +02:00
|
|
|
"shell"
|
|
|
|
"rust-docs"
|
|
|
|
];
|
2022-12-06 14:47:02 +01:00
|
|
|
}
|