about summary refs log tree commit diff
path: root/pkgs/development/tools/imatix_gsl
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-11-05 02:10:31 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-30 13:22:43 +0100
commit2157dcd141a5df499698ffb9b1d901192f089bdc (patch)
treeaff6dd99868e7b461d5b5f87f347c079960862ed /pkgs/development/tools/imatix_gsl
parent133103d7094c148bdc9152562b16c8872c44f345 (diff)
downloadnixlib-2157dcd141a5df499698ffb9b1d901192f089bdc.tar
nixlib-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.gz
nixlib-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.bz2
nixlib-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.lz
nixlib-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.xz
nixlib-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.zst
nixlib-2157dcd141a5df499698ffb9b1d901192f089bdc.zip
treewide: installFlags is a list
Diffstat (limited to 'pkgs/development/tools/imatix_gsl')
-rw-r--r--pkgs/development/tools/imatix_gsl/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/imatix_gsl/default.nix b/pkgs/development/tools/imatix_gsl/default.nix
index 549a4d1b8266..c4d290bf9671 100644
--- a/pkgs/development/tools/imatix_gsl/default.nix
+++ b/pkgs/development/tools/imatix_gsl/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation {
 
   postPatch = "sed -e 's,/usr/bin/install,install,g' -i src/Makefile";
   preBuild = "cd src";
-  installFlags = "DESTDIR=$(out)";
+  installFlags = [ "DESTDIR=$(out)" ];
 
   meta = with stdenv.lib; {
     license = licenses.gpl3Plus;