2020-11-11 12:53:37 +00:00
|
|
|
let
|
2021-07-20 21:09:18 +00:00
|
|
|
rust = import (builtins.fetchTarball "https://github.com/oxalica/rust-overlay/archive/master.tar.gz");
|
|
|
|
pkgs = import <nixpkgs> { overlays = [ rust ]; };
|
|
|
|
pkgs-latest = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/94e725d3299cbeb71419758d671dfb0771b8e318.tar.gz") {};
|
|
|
|
pkgs-python = pkgs-latest.python3.withPackages (pkgs: [ pkgs.black pkgs.mypy pkgs.pylint ]);
|
2020-11-11 12:53:37 +00:00
|
|
|
in
|
|
|
|
pkgs.mkShell {
|
|
|
|
buildInputs = [
|
2021-07-20 21:09:18 +00:00
|
|
|
# Rust
|
|
|
|
pkgs.rust-bin.stable.latest.default
|
|
|
|
|
|
|
|
# Shells
|
|
|
|
pkgs-latest.bash
|
|
|
|
pkgs-latest.dash
|
|
|
|
pkgs-latest.elvish
|
|
|
|
pkgs-latest.nushell
|
|
|
|
pkgs-latest.fish
|
|
|
|
pkgs-latest.powershell
|
|
|
|
pkgs-latest.xonsh
|
|
|
|
pkgs-latest.zsh
|
|
|
|
|
|
|
|
# Linters
|
|
|
|
pkgs-latest.cargo-audit
|
|
|
|
pkgs-latest.shellcheck
|
|
|
|
pkgs-latest.shfmt
|
2021-04-05 06:31:24 +00:00
|
|
|
pkgs-python
|
2021-07-20 21:09:18 +00:00
|
|
|
|
|
|
|
# Dependencies
|
|
|
|
pkgs.cacert
|
|
|
|
pkgs.libiconv
|
|
|
|
pkgs-latest.fzf
|
|
|
|
pkgs-latest.git
|
2020-11-11 12:53:37 +00:00
|
|
|
];
|
2021-07-20 21:09:18 +00:00
|
|
|
|
2020-11-11 12:53:37 +00:00
|
|
|
RUST_BACKTRACE = 1;
|
|
|
|
}
|