lispPackages.clwrapper: use bash as the wrapper shell to make sure arays are supported

This commit is contained in:
Michael Raskin 2018-02-17 21:05:35 +01:00
parent 2e33da997d
commit 8de132f52d
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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;