about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-07-25 17:44:21 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-08-03 17:06:03 -0400
commit85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e (patch)
tree544a86c87280e6870fefe3005d2b9387a6b48581 /pkgs/development/interpreters
parent632d24f11f51cc1581e921aa0eb8c6669296e8de (diff)
downloadnixlib-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.tar
nixlib-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.tar.gz
nixlib-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.tar.bz2
nixlib-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.tar.lz
nixlib-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.tar.xz
nixlib-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.tar.zst
nixlib-85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e.zip
treewide: Make more complicated configureFlags lists
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/scsh/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/scsh/default.nix b/pkgs/development/interpreters/scsh/default.nix
index 8da41ea1a9cb..85c9434f0813 100644
--- a/pkgs/development/interpreters/scsh/default.nix
+++ b/pkgs/development/interpreters/scsh/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
 
   nativeBuildInputs = [ autoreconfHook ];
   buildInputs = [ scheme48 ];
-  configureFlags = ''--with-scheme48=${scheme48}'';
+  configureFlags = [ "--with-scheme48=${scheme48}" ];
 
   meta = with stdenv.lib; {
     description = "A Scheme shell";