ui_test 0.27.1

A test framework for testing rustc diagnostics output
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
let
  pkgs = import <nixpkgs> {};
in
pkgs.mkShell rec {
  name = "rustc";
  buildInputs = with pkgs; [
    rustup
    pkg-config
    alsaLib
    libGL
    xorg.libX11
    xorg.libXi
    python39
  ];
  RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
  LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath buildInputs}";
}