Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lovesegfault/c66f56436590d85f85c00eac2df7fd80 to your computer and use it in GitHub Desktop.
Save lovesegfault/c66f56436590d85f85c00eac2df7fd80 to your computer and use it in GitHub Desktop.
{ pkgs ? import <nixpkgs> { } }:
let
llvmShared = pkgs.llvm_9.override { enableSharedLibraries = true; };
in
pkgs.mkShell {
name = "fuzz-rustc";
nativeBuildInputs = with pkgs; [
pkg-config
];
buildInputs = with pkgs; [
libxml2
llvmShared
rustup
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment