summary refs log tree commit diff
path: root/pkgs/development/coq-modules/mathcomp/extra.nix
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/coq-modules/mathcomp/extra.nix
parent133103d7094c148bdc9152562b16c8872c44f345 (diff)
downloadnixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.tar
nixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.gz
nixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.bz2
nixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.lz
nixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.xz
nixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.tar.zst
nixpkgs-2157dcd141a5df499698ffb9b1d901192f089bdc.zip
treewide: installFlags is a list
Diffstat (limited to 'pkgs/development/coq-modules/mathcomp/extra.nix')
-rw-r--r--pkgs/development/coq-modules/mathcomp/extra.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/coq-modules/mathcomp/extra.nix b/pkgs/development/coq-modules/mathcomp/extra.nix
index c342c25a411..2df9cbe58c7 100644
--- a/pkgs/development/coq-modules/mathcomp/extra.nix
+++ b/pkgs/development/coq-modules/mathcomp/extra.nix
@@ -74,7 +74,7 @@ versions = {
       core-deps = with coqPackages; [ mathcomp-field_1_9 ];
       extra-deps = with coqPackages; [ mathcomp_1_9-bigenough ];
     };
-  }; 
+  };
   "1.8.0" = {
     finmap.version = "1.2.1";
     bigenough.version = "1.0.0";
@@ -154,7 +154,7 @@ packageGen = {
 
     propagatedBuildInputs = [ coq ] ++ mc-core-deps ++ extra-deps;
 
-    installFlags = "-f Makefile.coq COQLIB=$(out)/lib/coq/${coq.coq-version}/";
+    installFlags = [ "-f" "Makefile.coq" "COQLIB=$(out)/lib/coq/${coq.coq-version}/" ];
 
     meta = {
       inherit description;