about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2020-12-31 14:48:55 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-01-01 11:52:33 +0700
commitb04fc593e7b55fe1f74421b11589f12a339c92e2 (patch)
treefa9bbaeb68f1e0cfa6ea2f9580ea2892eed41b3e /pkgs/development/ocaml-modules
parent54ab07c1fe4e39c5a84834f85300c63e3809ac2d (diff)
downloadnixlib-b04fc593e7b55fe1f74421b11589f12a339c92e2.tar
nixlib-b04fc593e7b55fe1f74421b11589f12a339c92e2.tar.gz
nixlib-b04fc593e7b55fe1f74421b11589f12a339c92e2.tar.bz2
nixlib-b04fc593e7b55fe1f74421b11589f12a339c92e2.tar.lz
nixlib-b04fc593e7b55fe1f74421b11589f12a339c92e2.tar.xz
nixlib-b04fc593e7b55fe1f74421b11589f12a339c92e2.tar.zst
nixlib-b04fc593e7b55fe1f74421b11589f12a339c92e2.zip
treewide: cmake buildInputs to nativeBuildInputs, minor cleanups
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/llvm/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/ocaml-modules/llvm/default.nix b/pkgs/development/ocaml-modules/llvm/default.nix
index 24fde437d5c3..d141e59d45e8 100644
--- a/pkgs/development/ocaml-modules/llvm/default.nix
+++ b/pkgs/development/ocaml-modules/llvm/default.nix
@@ -8,7 +8,8 @@ stdenv.mkDerivation {
 
   inherit (llvm) src;
 
-  buildInputs = [ python cmake ocaml findlib ctypes ];
+  nativeBuildInputs = [ cmake ];
+  buildInputs = [ python ocaml findlib ctypes ];
   propagatedBuildInputs = [ llvm ];
 
   patches = [ (fetchpatch {