home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

cargo.nix (388B)


      1 { pkgs ? import <nixpkgs> { } }:
      2 
      3 # This file contains a development shell for running and working on Cargo.
      4 pkgs.mkShell rec {
      5   name = "rustc-perf";
      6   buildInputs = with pkgs; [
      7     git
      8     curl
      9     gnumake
     10     pkg-config
     11     openssl
     12 
     13     rustup
     14 
     15     # Required for nested shells in lorri to work correctly.
     16     bashInteractive
     17   ];
     18 
     19   # Always show backtraces.
     20   RUST_BACKTRACE = 1;
     21 }