We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59d1489 commit 8300609Copy full SHA for 8300609
shell.nix
@@ -0,0 +1,20 @@
1
+{ pkgs ? import <nixpkgs> {} }:
2
+
3
+let
4
+ moz_overlay = import (builtins.fetchTarball "https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz");
5
+ nixpkgs = import <nixpkgs> { overlays = [ moz_overlay ]; };
6
+ custom = import (builtins.fetchTarball {
7
+ name = "killercup-nixpkgs";
8
+ url = "https://github.com/killercup/nixpkgs/archive/cargo-fuzz-0.5.4.tar.gz";
9
+ }) {};
10
+in pkgs.mkShell {
11
+ buildInputs = with pkgs; [
12
+ git
13
+ (nixpkgs.rustChannelOf { date = "2019-10-23"; channel = "nightly"; }).rust
14
+ custom.pkgs.cargo-fuzz
15
+ ];
16
17
+ RUSTFLAGS="-C link-arg=-fuse-ld=gold";
18
+ RUST_BACKTRACE = 1;
19
+}
20
0 commit comments