tvl-depot/tvix/tools/turbofetch/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
270 B
Nix
Raw Normal View History

{ lib, pkgs, ... }:
(pkgs.callPackage ./Cargo.nix {
defaultCrateOverrides = pkgs.defaultCrateOverrides // {
ring = prev: {
links = ''ring_core_${lib.replaceStrings ["."] ["_"] prev.version}'';
};
};
}).rootCrate.build.override {
runTests = true;
}