feat(tvix/tools/turbofetch): init
Change-Id: I2efa6f94f57e812c52371256a4e62d1d54ff5057 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9925 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
This commit is contained in:
parent
9cd2e92065
commit
bdda10a2f5
9 changed files with 8624 additions and 0 deletions
12
tvix/tools/turbofetch/default.nix
Normal file
12
tvix/tools/turbofetch/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ lib, pkgs, ... }:
|
||||
|
||||
(pkgs.callPackage ./Cargo.nix {
|
||||
defaultCrateOverrides = pkgs.defaultCrateOverrides // {
|
||||
ring = prev: {
|
||||
# TODO(edef): implement CARGO_MANIFEST_LINKS in crate2nix
|
||||
CARGO_MANIFEST_LINKS = ''ring_core_${lib.replaceStrings ["."] ["_"] prev.version}'';
|
||||
};
|
||||
};
|
||||
}).rootCrate.build.override {
|
||||
runTests = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue