mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
Merge pull request #91343 from madjar/just-remove-dash-dependency
just: remove dash dependency
This commit is contained in:
commit
bf2425fb06
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, rustPlatform, coreutils, bash, dash
|
||||
{ stdenv, fetchFromGitHub, rustPlatform, coreutils, bash
|
||||
, installShellFiles }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
|
@ -24,7 +24,7 @@ rustPlatform.buildRustPackage rec {
|
|||
installShellCompletion --zsh --name _just completions/just.zsh
|
||||
'';
|
||||
|
||||
checkInputs = [ coreutils bash dash ];
|
||||
checkInputs = [ coreutils bash ];
|
||||
|
||||
preCheck = ''
|
||||
# USER must not be empty
|
||||
|
|
Loading…
Reference in a new issue