Remove checkPhase from Nushell
This commit is contained in:
parent
49caecc164
commit
c16c23c983
14
shell.nix
14
shell.nix
|
|
@ -1,14 +1,16 @@
|
||||||
let
|
let
|
||||||
|
nushell = self: super: { nushell = super.nushell.overrideAttrs (old: { checkPhase = ""; }); };
|
||||||
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/20.09.tar.gz") {};
|
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/20.09.tar.gz") {};
|
||||||
pkgsMaster = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/470e4a9bbc98b171a7e733dfc9e62531f7b9ceca.tar.gz") {};
|
pkgs-master = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/470e4a9bbc98b171a7e733dfc9e62531f7b9ceca.tar.gz") {
|
||||||
pkgsPython = pkgs.python3.withPackages (pkgs: [ pkgs.black pkgs.mypy pkgs.pylint ]);
|
overlays = [ nushell ];
|
||||||
|
};
|
||||||
|
pkgs-python = pkgs.python3.withPackages (pkgs: [ pkgs.black pkgs.mypy pkgs.pylint ]);
|
||||||
in
|
in
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
name = "env";
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
pkgsMaster.cargo-audit
|
pkgs-master.cargo-audit
|
||||||
pkgsMaster.nushell
|
pkgs-master.nushell
|
||||||
pkgsPython
|
pkgs-python
|
||||||
pkgs.bash
|
pkgs.bash
|
||||||
pkgs.cargo
|
pkgs.cargo
|
||||||
pkgs.clippy
|
pkgs.clippy
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue