about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/llvm
diff options
context:
space:
mode:
authorArmeen Mahdian <mahdianarmeen@gmail.com>2022-04-22 16:05:32 -0500
committerVincent Laporte <vbgl@users.noreply.github.com>2022-04-23 13:40:33 +0200
commit4e4feb0e0666c44a53c130efaf1082060104408d (patch)
tree22be8601a7b911e6637d818cded40ed52e2d6694 /pkgs/development/ocaml-modules/llvm
parent4ea2662743eb43536694f7eb3079bbc8e26b7ca8 (diff)
downloadnixlib-4e4feb0e0666c44a53c130efaf1082060104408d.tar
nixlib-4e4feb0e0666c44a53c130efaf1082060104408d.tar.gz
nixlib-4e4feb0e0666c44a53c130efaf1082060104408d.tar.bz2
nixlib-4e4feb0e0666c44a53c130efaf1082060104408d.tar.lz
nixlib-4e4feb0e0666c44a53c130efaf1082060104408d.tar.xz
nixlib-4e4feb0e0666c44a53c130efaf1082060104408d.tar.zst
nixlib-4e4feb0e0666c44a53c130efaf1082060104408d.zip
ocamlPackages.llvm: switch to python3
Diffstat (limited to 'pkgs/development/ocaml-modules/llvm')
-rw-r--r--pkgs/development/ocaml-modules/llvm/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/ocaml-modules/llvm/default.nix b/pkgs/development/ocaml-modules/llvm/default.nix
index 9ab3d906ab1e..c0600df64f27 100644
--- a/pkgs/development/ocaml-modules/llvm/default.nix
+++ b/pkgs/development/ocaml-modules/llvm/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, python2, cmake, libllvm, ocaml, findlib, ctypes }:
+{ stdenv, lib, python3, cmake, libllvm, ocaml, findlib, ctypes }:
 
 let version = lib.getVersion libllvm; in
 
@@ -8,7 +8,7 @@ stdenv.mkDerivation {
 
   inherit (libllvm) src;
 
-  nativeBuildInputs = [ cmake python2 ocaml findlib ];
+  nativeBuildInputs = [ cmake python3 ocaml findlib ];
   buildInputs = [ ctypes ];
   propagatedBuildInputs = [ libllvm ];