mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
12 lines
180 B
Nix
12 lines
180 B
Nix
|
{ stdenv, rustc }:
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
name = "rust-lib-src";
|
||
|
src = rustc.src;
|
||
|
phases = [ "unpackPhase" "installPhase" ];
|
||
|
|
||
|
installPhase = ''
|
||
|
mv library $out
|
||
|
'';
|
||
|
}
|