Created
April 2, 2020 07:33
-
-
Save lovesegfault/c66f56436590d85f85c00eac2df7fd80 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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