727493fff0
GitOrigin-RevId: b839d4a8557adc80e522f674529e586ab2a88d23
11 lines
180 B
Nix
11 lines
180 B
Nix
{ stdenv, rustc }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "rust-lib-src";
|
|
src = rustc.src;
|
|
phases = [ "unpackPhase" "installPhase" ];
|
|
|
|
installPhase = ''
|
|
mv library $out
|
|
'';
|
|
}
|