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
|
# Part of NixPkgs package collection
|
||||||
# This script can be used at your option under the same license as NixPkgs or
|
# This script can be used at your option under the same license as NixPkgs or
|
||||||
# under MIT/X11 license
|
# under MIT/X11 license
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{stdenv, fetchurl, asdf, which, lisp ? null}:
|
{stdenv, fetchurl, asdf, which, bash, lisp ? null}:
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "cl-wrapper-script";
|
name = "cl-wrapper-script";
|
||||||
|
|
||||||
@ -36,7 +36,7 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
buildInputs = [which];
|
buildInputs = [which];
|
||||||
|
|
||||||
inherit asdf lisp;
|
inherit asdf lisp bash;
|
||||||
stdenv_shell = stdenv.shell;
|
stdenv_shell = stdenv.shell;
|
||||||
|
|
||||||
setupHook = ./setup-hook.sh;
|
setupHook = ./setup-hook.sh;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user