2020-05-30 14:57:18 +00:00
|
|
|
let
|
|
|
|
sources = import ./nix/sources.nix;
|
|
|
|
pkgs = import <nixpkgs> { overlays = [ (import sources.nixpkgs-mozilla) ]; };
|
|
|
|
in pkgs.mkShell {
|
|
|
|
buildInputs = with pkgs; [
|
|
|
|
latest.rustChannels.stable.rust
|
2020-06-12 11:18:13 +00:00
|
|
|
cargo-watch
|
2020-05-30 14:57:18 +00:00
|
|
|
openssl
|
|
|
|
pkg-config
|
2020-05-31 19:33:39 +00:00
|
|
|
libgit2
|
2020-05-30 14:57:18 +00:00
|
|
|
];
|
|
|
|
}
|