about summary refs log tree commit diff
path: root/pkgs/development/compilers/z88dk
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-11-04 13:33:53 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-30 13:29:27 +0100
commit65395a7105feac9eb4a2ddf7915607e24b19f71e (patch)
tree123882fb83e0f284c7d6dacd824d3fe16e7eeb9e /pkgs/development/compilers/z88dk
parent2157dcd141a5df499698ffb9b1d901192f089bdc (diff)
treewide: installTargets is a list
Diffstat (limited to 'pkgs/development/compilers/z88dk')
-rw-r--r--pkgs/development/compilers/z88dk/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/compilers/z88dk/default.nix b/pkgs/development/compilers/z88dk/default.nix
index 433b6e6b32cb5..2d62bfede093d 100644
--- a/pkgs/development/compilers/z88dk/default.nix
+++ b/pkgs/development/compilers/z88dk/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
     # we test in checkPhase
     substituteInPlace Makefile \
       --replace 'testsuite bin/z88dk-lib$(EXESUFFIX)' 'bin/z88dk-lib$(EXESUFFIX)'\
-      --replace 'ALL_EXT = bin/zsdcc$(EXESUFFIX)' 'ALL_EXT ='   
+      --replace 'ALL_EXT = bin/zsdcc$(EXESUFFIX)' 'ALL_EXT ='
   '';
 
   checkPhase = ''
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
     mkdir -p $out/{bin,share}
   '';
 
-  installTargets = "libs install";
+  installTargets = [ "libs" "install" ];
 
   meta = with stdenv.lib; {
     homepage    = "https://www.z88dk.org";