summary refs log tree commit diff
path: root/pkgs/development/tools/ocaml/opaline
diff options
context:
space:
mode:
authorGuillaume Girol <symphorien+git@xlumurb.eu>2021-08-14 12:00:00 +0000
committerGuillaume Girol <symphorien+git@xlumurb.eu>2021-08-19 09:30:48 +0200
commit9ae5ae736ae34a95785deec309e10ec29875d1cc (patch)
treebc95a4a441613c8bc728e7a008d51f772f3d90cc /pkgs/development/tools/ocaml/opaline
parentfd60747cbded525bcc57e5f641a559d7ac6957bd (diff)
downloadnixpkgs-9ae5ae736ae34a95785deec309e10ec29875d1cc.tar
nixpkgs-9ae5ae736ae34a95785deec309e10ec29875d1cc.tar.gz
nixpkgs-9ae5ae736ae34a95785deec309e10ec29875d1cc.tar.bz2
nixpkgs-9ae5ae736ae34a95785deec309e10ec29875d1cc.tar.lz
nixpkgs-9ae5ae736ae34a95785deec309e10ec29875d1cc.tar.xz
nixpkgs-9ae5ae736ae34a95785deec309e10ec29875d1cc.tar.zst
nixpkgs-9ae5ae736ae34a95785deec309e10ec29875d1cc.zip
opaline: fix static build
Diffstat (limited to 'pkgs/development/tools/ocaml/opaline')
-rw-r--r--pkgs/development/tools/ocaml/opaline/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/tools/ocaml/opaline/default.nix b/pkgs/development/tools/ocaml/opaline/default.nix
index 9cdacd289d4..d9ba33bb473 100644
--- a/pkgs/development/tools/ocaml/opaline/default.nix
+++ b/pkgs/development/tools/ocaml/opaline/default.nix
@@ -11,7 +11,8 @@ stdenv.mkDerivation rec {
     sha256 = "1aj1fdqymq3pnr39h47hn3kxk5v9pnwx0jap1z2jzh78x970z21m";
   };
 
-  buildInputs = with ocamlPackages; [ ocaml findlib ocamlbuild opam-file-format ];
+  nativeBuildInputs = with ocamlPackages; [ ocaml findlib ocamlbuild ];
+  buildInputs = with ocamlPackages; [ opam-file-format ];
 
   preInstall = "mkdir -p $out/bin";