zoxide/shell.nix

57 lines
1.3 KiB
Nix
Raw Normal View History

2020-11-11 18:23:37 +05:30
let
2021-12-05 14:28:31 +05:30
pkgs = import (builtins.fetchTarball
2023-11-19 18:52:15 +05:30
"https://github.com/NixOS/nixpkgs/archive/4d513ab5f170d66afa3387bdd718d41aa936ee9f.tar.gz") {
2021-12-05 14:28:31 +05:30
overlays = [ rust ];
};
2023-05-06 14:09:23 +05:30
rust = import (builtins.fetchTarball
2024-02-13 03:13:22 +05:30
"https://github.com/oxalica/rust-overlay/archive/e6679d2ff9136d00b3a7168d2bf1dff9e84c5758.tar.gz");
2023-05-06 03:16:13 +05:30
rust-nightly =
pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.minimal);
cargo-udeps = pkgs.writeShellScriptBin "cargo-udeps" ''
export RUSTC="${rust-nightly}/bin/rustc";
export CARGO="${rust-nightly}/bin/cargo";
exec "${pkgs.cargo-udeps}/bin/cargo-udeps" "$@"
'';
2021-10-12 01:35:24 +05:30
in pkgs.mkShell {
2020-11-11 18:23:37 +05:30
buildInputs = [
# Rust
2023-05-06 03:16:13 +05:30
(pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.rustfmt))
pkgs.rust-bin.stable.latest.default
# Shells
2021-09-18 01:29:46 +05:30
pkgs.bash
pkgs.dash
2021-12-05 14:28:31 +05:30
pkgs.elvish
pkgs.fish
pkgs.nushell
2021-09-18 01:29:46 +05:30
pkgs.powershell
2021-12-05 14:28:31 +05:30
pkgs.xonsh
2021-09-18 01:29:46 +05:30
pkgs.zsh
2021-09-28 04:52:27 +05:30
# Tools
2023-05-06 03:16:13 +05:30
cargo-udeps
2023-01-18 11:05:19 +05:30
pkgs.cargo-msrv
2022-05-19 16:37:25 +05:30
pkgs.cargo-nextest
2023-05-06 03:16:13 +05:30
pkgs.cargo-udeps
pkgs.just
2021-12-05 14:28:31 +05:30
pkgs.mandoc
pkgs.nixfmt
pkgs.nodePackages.markdownlint-cli
pkgs.python3Packages.black
pkgs.python3Packages.mypy
pkgs.python3Packages.pylint
pkgs.shellcheck
pkgs.shfmt
2023-05-06 14:09:23 +05:30
pkgs.yamlfmt
# Dependencies
pkgs.cacert
2021-09-18 01:29:46 +05:30
pkgs.fzf
pkgs.git
2021-12-05 14:28:31 +05:30
pkgs.libiconv
2020-11-11 18:23:37 +05:30
];
2022-04-25 14:45:46 +05:30
CARGO_TARGET_DIR = "target_nix";
2020-11-11 18:23:37 +05:30
}