mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
lispPackages.clwrapper: use bash as the wrapper shell to make sure arays are supported
This commit is contained in:
parent
2e33da997d
commit
8de132f52d
@ -1,4 +1,4 @@
|
||||
#!@stdenv_shell@
|
||||
#!@bash@/bin/bash
|
||||
# Part of NixPkgs package collection
|
||||
# This script can be used at your option under the same license as NixPkgs or
|
||||
# under MIT/X11 license
|
||||
|
@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, asdf, which, lisp ? null}:
|
||||
{stdenv, fetchurl, asdf, which, bash, lisp ? null}:
|
||||
stdenv.mkDerivation {
|
||||
name = "cl-wrapper-script";
|
||||
|
||||
@ -36,7 +36,7 @@ stdenv.mkDerivation {
|
||||
|
||||
buildInputs = [which];
|
||||
|
||||
inherit asdf lisp;
|
||||
inherit asdf lisp bash;
|
||||
stdenv_shell = stdenv.shell;
|
||||
|
||||
setupHook = ./setup-hook.sh;
|
||||
|
Loading…
Reference in New Issue
Block a user