mirror of
https://github.com/Llewellynvdm/zoxide.git
synced 2024-11-25 14:07:35 +00:00
Use Nushell from Nixpkgs unstable (#171)
This commit is contained in:
parent
0b7b29e0e8
commit
3398cc721d
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
@ -11,7 +11,7 @@ jobs:
|
|||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
os: [ubuntu-latest, windows-latest]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions-rs/install@v0.1
|
- uses: actions-rs/install@v0.1
|
||||||
@ -19,13 +19,10 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
crate: cargo-audit
|
crate: cargo-audit
|
||||||
version: latest
|
version: latest
|
||||||
- uses: actions-rs/install@v0.1
|
|
||||||
if: ${{ matrix.os != 'windows-latest' }}
|
|
||||||
with:
|
|
||||||
crate: nu
|
|
||||||
version: latest
|
|
||||||
- uses: cachix/install-nix-action@v12
|
- uses: cachix/install-nix-action@v12
|
||||||
if: ${{ matrix.os != 'windows-latest' }}
|
if: ${{ matrix.os != 'windows-latest' }}
|
||||||
with:
|
with:
|
||||||
nix_path: nixpkgs=channel:nixos-stable
|
nix_path: nixpkgs=channel:nixos-stable
|
||||||
- run: make test
|
- run: mkdir -p /tmp/home && make test
|
||||||
|
env:
|
||||||
|
HOME: /tmp/home
|
||||||
|
18
Makefile
18
Makefile
@ -16,7 +16,7 @@ endif
|
|||||||
|
|
||||||
ifeq ($(NIX), true)
|
ifeq ($(NIX), true)
|
||||||
build:
|
build:
|
||||||
nix-shell --run 'cargo build $(build_flags) $(ci_color_always)'
|
nix-shell --pure --run 'cargo build $(build_flags) $(ci_color_always)'
|
||||||
else
|
else
|
||||||
build:
|
build:
|
||||||
cargo build $(build_flags) $(ci_color_always)
|
cargo build $(build_flags) $(ci_color_always)
|
||||||
@ -24,7 +24,7 @@ endif
|
|||||||
|
|
||||||
ifeq ($(NIX), true)
|
ifeq ($(NIX), true)
|
||||||
clean:
|
clean:
|
||||||
nix-shell --run 'cargo clean $(ci_color_always)'
|
nix-shell --pure --run 'cargo clean $(ci_color_always)'
|
||||||
else
|
else
|
||||||
clean:
|
clean:
|
||||||
cargo clean $(ci_color_always)
|
cargo clean $(ci_color_always)
|
||||||
@ -32,7 +32,7 @@ endif
|
|||||||
|
|
||||||
ifeq ($(NIX), true)
|
ifeq ($(NIX), true)
|
||||||
install:
|
install:
|
||||||
nix-shell --run 'cargo install --path=. $(ci_color_always)'
|
nix-shell --pure --run 'cargo install --path=. $(ci_color_always)'
|
||||||
else
|
else
|
||||||
install:
|
install:
|
||||||
cargo install --path=. $(ci_color_always)
|
cargo install --path=. $(ci_color_always)
|
||||||
@ -40,11 +40,11 @@ endif
|
|||||||
|
|
||||||
ifeq ($(NIX), true)
|
ifeq ($(NIX), true)
|
||||||
test:
|
test:
|
||||||
nix-shell --run 'cargo fmt -- --check --files-with-diff $(ci_color_always)'
|
nix-shell --pure --run 'cargo fmt -- --check --files-with-diff $(ci_color_always)'
|
||||||
nix-shell --run 'cargo check --all-features $(build_flags) $(ci_color_always)'
|
nix-shell --pure --run 'cargo check --all-features $(build_flags) $(ci_color_always)'
|
||||||
nix-shell --run 'cargo clippy --all-features $(build_flags) $(ci_color_always) -- --deny warnings --deny clippy::all'
|
nix-shell --pure --run 'cargo clippy --all-features $(build_flags) $(ci_color_always) -- --deny warnings --deny clippy::all'
|
||||||
nix-shell --run 'cargo test --all-features --no-fail-fast $(build_flags) $(ci_color_always)'
|
nix-shell --pure --run 'cargo test --all-features --no-fail-fast $(build_flags) $(ci_color_always)'
|
||||||
nix-shell --run 'cargo audit --deny warnings $(ci_color_always) --ignore=RUSTSEC-2020-0095'
|
nix-shell --pure --run 'cargo audit --deny warnings $(ci_color_always) --ignore=RUSTSEC-2020-0095'
|
||||||
else
|
else
|
||||||
test:
|
test:
|
||||||
cargo fmt -- --check --files-with-diff $(ci_color_always)
|
cargo fmt -- --check --files-with-diff $(ci_color_always)
|
||||||
@ -56,7 +56,7 @@ endif
|
|||||||
|
|
||||||
ifeq ($(NIX), true)
|
ifeq ($(NIX), true)
|
||||||
uninstall:
|
uninstall:
|
||||||
nix-shell --run 'cargo uninstall $(ci_color_always)'
|
nix-shell --pure --run 'cargo uninstall $(ci_color_always)'
|
||||||
else
|
else
|
||||||
uninstall:
|
uninstall:
|
||||||
cargo uninstall $(ci_color_always)
|
cargo uninstall $(ci_color_always)
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
import os.path
|
import os.path
|
||||||
|
import subprocess
|
||||||
|
|
||||||
import ranger.api
|
import ranger.api
|
||||||
import ranger.core.fm
|
import ranger.core.fm
|
||||||
import ranger.ext.signals
|
import ranger.ext.signals
|
||||||
import subprocess
|
|
||||||
|
|
||||||
hook_init_old = ranger.api.hook_init
|
hook_init_old = ranger.api.hook_init
|
||||||
|
|
||||||
|
18
shell.nix
18
shell.nix
@ -1,29 +1,27 @@
|
|||||||
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/20.09.tar.gz") {} }:
|
|
||||||
|
|
||||||
let
|
let
|
||||||
python-pkgs = pkgs.python3.withPackages (pkgs: [ pkgs.black pkgs.mypy pkgs.pylint ]);
|
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/20.09.tar.gz") {};
|
||||||
|
pkgs-master = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/470e4a9bbc98b171a7e733dfc9e62531f7b9ceca.tar.gz") {};
|
||||||
|
pkgs-python = pkgs.python3.withPackages (pkgs: [ pkgs.black pkgs.mypy pkgs.pylint ]);
|
||||||
in
|
in
|
||||||
|
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
name = "env";
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
pkgs-master.cargo-audit
|
||||||
|
pkgs-master.nushell
|
||||||
|
pkgs-python
|
||||||
pkgs.bash
|
pkgs.bash
|
||||||
pkgs.cargo
|
pkgs.cargo
|
||||||
pkgs.cargo-audit
|
pkgs.clippy
|
||||||
pkgs.dash
|
pkgs.dash
|
||||||
pkgs.fish
|
pkgs.fish
|
||||||
pkgs.fzf
|
pkgs.fzf
|
||||||
pkgs.git
|
pkgs.git
|
||||||
# pkgs.nushell # FIXME: too outdated
|
|
||||||
pkgs.powershell
|
pkgs.powershell
|
||||||
pkgs.rustc
|
pkgs.rustc
|
||||||
|
pkgs.rustfmt
|
||||||
pkgs.shellcheck
|
pkgs.shellcheck
|
||||||
pkgs.shfmt
|
pkgs.shfmt
|
||||||
pkgs.xonsh
|
pkgs.xonsh
|
||||||
pkgs.zsh
|
pkgs.zsh
|
||||||
python-pkgs
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Set Environment Variables
|
|
||||||
RUST_BACKTRACE = 1;
|
RUST_BACKTRACE = 1;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user