errors_with_context 1.2.0

Application-ending Errors with context
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  pkgs ? import <nixpkgs> { },
}:
let
  rustToolchain = pkgs.pkgsBuildHost.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
in
pkgs.mkShell {
#  LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib";

  nativeBuildInputs = [
#    pkgs.clang
    pkgs.pkg-config
    rustToolchain
  ];

  # run time dependencies
  buildInputs = [ ];
}