core/pkgs/by-name/ru/rust/packages.nix

25 lines
517 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ ... }:
res: pkgs: super:
2024-08-17 16:37:49 +00:00
with pkgs; {
rust_1_80 = callPackage ./1_80.nix {
2024-05-02 00:46:19 +00:00
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security SystemConfiguration;
2024-08-17 16:37:49 +00:00
llvm_18 = llvmPackages_18.libllvm;
2024-05-02 00:46:19 +00:00
};
2024-08-17 16:37:49 +00:00
rust = rust_1_80;
2024-05-02 00:46:19 +00:00
2024-08-17 16:37:49 +00:00
rustPackages_1_80 = rust_1_80.packages.stable;
rustPackages = rustPackages_1_80;
2024-05-02 00:46:19 +00:00
2024-08-17 16:37:49 +00:00
inherit (rustPackages)
cargo
cargo-auditable
cargo-auditable-cargo-wrapper
clippy
rustc
rustPlatform
;
2024-05-02 00:46:19 +00:00
makeRustPlatform = callPackage ./make-rust-platform.nix { };
}