aa526eb20f
GitOrigin-RevId: fcd48a5a0693f016a5c370460d0c2a8243b882dc
6 lines
123 B
Nix
6 lines
123 B
Nix
{ runCommand, rustc }:
|
|
|
|
runCommand "rust-lib-src" { } ''
|
|
tar --strip-components=1 -xzf ${rustc.src}
|
|
mv library $out
|
|
''
|