lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+3 -3
+1 -1
pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh
··· 1 - #!@stdenv_shell@ 1 + #!@bash@/bin/bash 2 2 # Part of NixPkgs package collection 3 3 # This script can be used at your option under the same license as NixPkgs or 4 4 # under MIT/X11 license
+2 -2
pkgs/development/lisp-modules/clwrapper/default.nix
··· 1 - {stdenv, fetchurl, asdf, which, lisp ? null}: 1 + {stdenv, fetchurl, asdf, which, bash, lisp ? null}: 2 2 stdenv.mkDerivation { 3 3 name = "cl-wrapper-script"; 4 4 ··· 36 36 37 37 buildInputs = [which]; 38 38 39 - inherit asdf lisp; 39 + inherit asdf lisp bash; 40 40 stdenv_shell = stdenv.shell; 41 41 42 42 setupHook = ./setup-hook.sh;