about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorCedric Cellier <rixed@happyleptic.org>2019-03-27 18:49:31 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2019-09-29 17:00:18 +0200
commit94560d77ec8efbe9be882cdd8e5a1cc78c3c5ca3 (patch)
tree4ecb4691695e735d300f37c3c48c198cb790fb8f /pkgs/development/ocaml-modules
parent39769df9dfa63263850e9c4f6f771873b89198b5 (diff)
downloadnixlib-94560d77ec8efbe9be882cdd8e5a1cc78c3c5ca3.tar
nixlib-94560d77ec8efbe9be882cdd8e5a1cc78c3c5ca3.tar.gz
nixlib-94560d77ec8efbe9be882cdd8e5a1cc78c3c5ca3.tar.bz2
nixlib-94560d77ec8efbe9be882cdd8e5a1cc78c3c5ca3.tar.lz
nixlib-94560d77ec8efbe9be882cdd8e5a1cc78c3c5ca3.tar.xz
nixlib-94560d77ec8efbe9be882cdd8e5a1cc78c3c5ca3.tar.zst
nixlib-94560d77ec8efbe9be882cdd8e5a1cc78c3c5ca3.zip
lacaml: Use propagatedBuildInputs for stublibs
This frees the packages depending on lacaml to have to repeat this.
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/lacaml/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/lacaml/default.nix b/pkgs/development/ocaml-modules/lacaml/default.nix
index 4556fb1eb416..4b35ce25fde4 100644
--- a/pkgs/development/ocaml-modules/lacaml/default.nix
+++ b/pkgs/development/ocaml-modules/lacaml/default.nix
@@ -13,8 +13,8 @@ stdenv.mkDerivation rec {
     sha256 = "1aflg07cc9ak9mg1cr0qr368c9s141glwlarl5nhalf6hhq7ibcb";
   };
 
-  buildInputs =
-    [ ocaml findlib dune base stdio liblapack blas ] ++
+  buildInputs = [ ocaml findlib dune base stdio ];
+  propagatedBuildInputs = [ liblapack blas ] ++
     stdenv.lib.optionals stdenv.isDarwin
       [ darwin.apple_sdk.frameworks.Accelerate ];