summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-10-29 23:21:22 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-30 12:15:28 +0100
commit8df63ca72f391f78d7e9ec23fa1fe461d19d41c8 (patch)
treec288dc32bdd7707c5a4e6661e51c6704230b80bb /pkgs
parent7139d2c8815121bb4d028d8749985f3105d1e272 (diff)
downloadnixpkgs-8df63ca72f391f78d7e9ec23fa1fe461d19d41c8.tar
nixpkgs-8df63ca72f391f78d7e9ec23fa1fe461d19d41c8.tar.gz
nixpkgs-8df63ca72f391f78d7e9ec23fa1fe461d19d41c8.tar.bz2
nixpkgs-8df63ca72f391f78d7e9ec23fa1fe461d19d41c8.tar.lz
nixpkgs-8df63ca72f391f78d7e9ec23fa1fe461d19d41c8.tar.xz
nixpkgs-8df63ca72f391f78d7e9ec23fa1fe461d19d41c8.tar.zst
nixpkgs-8df63ca72f391f78d7e9ec23fa1fe461d19d41c8.zip
fontconfig: *Flags are lists
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/ocaml-modules/fontconfig/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/fontconfig/default.nix b/pkgs/development/ocaml-modules/fontconfig/default.nix
index 4f586f2f99e..ce17cc60ebf 100644
--- a/pkgs/development/ocaml-modules/fontconfig/default.nix
+++ b/pkgs/development/ocaml-modules/fontconfig/default.nix
@@ -11,7 +11,10 @@ stdenv.mkDerivation {
 
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [ ocaml fontconfig ];
-  makeFlags = "OCAML_STDLIB_DIR=$(out)/lib/ocaml/${stdenv.lib.getVersion ocaml}/site-lib/ OCAML_HAVE_OCAMLOPT=yes";
+  makeFlags = [
+    "OCAML_STDLIB_DIR=$(out)/lib/ocaml/${stdenv.lib.getVersion ocaml}/site-lib/"
+    "OCAML_HAVE_OCAMLOPT=yes"
+  ];
 
   meta = {
     description = "Fontconfig bindings for OCaml";