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

22 lines
400 B
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ lib, runCommand, rustc, minimalContent ? true }:
runCommand "rust-src" { } ''
tar -xzf ${rustc.src}
mv rustc-${rustc.version}-src $out
rm -rf $out/{${lib.concatStringsSep "," ([
"ci"
"doc"
"etc"
"grammar"
"llvm-project"
"llvm-emscripten"
"rtstartup"
"rustllvm"
"test"
"vendor"
] ++ lib.optionals minimalContent [
"tools"
"stdarch"
])}}
''