360c98ce38
* picked avrdude from stable channel * removed override for texlive, as the upstream fix is merged * picked awscli2 from stable channel * bump tdlib to 1.8.21 (new minimum for telega.el) * tvix/turbofetch: switch to nixpkgs-native mechanism for CARGO_MANIFEST_LINKS (whatever that is) Change-Id: Ic695721b5ca750b89d21cab7a257e1db682b23c0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/10083 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su>
12 lines
270 B
Nix
12 lines
270 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
(pkgs.callPackage ./Cargo.nix {
|
|
defaultCrateOverrides = pkgs.defaultCrateOverrides // {
|
|
|
|
ring = prev: {
|
|
links = ''ring_core_${lib.replaceStrings ["."] ["_"] prev.version}'';
|
|
};
|
|
};
|
|
}).rootCrate.build.override {
|
|
runTests = true;
|
|
}
|