summary refs log tree commit diff
path: root/pkgs/development/libraries/mlt
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-07-27 19:16:48 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2021-07-27 20:42:00 +0200
commitafa9c4ae684a4539a677f80539c1c2640fbaa1dc (patch)
tree043f75b4463941f5c80350dc0b6722bb58e9fea2 /pkgs/development/libraries/mlt
parentdc04d776a3261bf2406a762921525dfa531acd57 (diff)
downloadnixpkgs-afa9c4ae684a4539a677f80539c1c2640fbaa1dc.tar
nixpkgs-afa9c4ae684a4539a677f80539c1c2640fbaa1dc.tar.gz
nixpkgs-afa9c4ae684a4539a677f80539c1c2640fbaa1dc.tar.bz2
nixpkgs-afa9c4ae684a4539a677f80539c1c2640fbaa1dc.tar.lz
nixpkgs-afa9c4ae684a4539a677f80539c1c2640fbaa1dc.tar.xz
nixpkgs-afa9c4ae684a4539a677f80539c1c2640fbaa1dc.tar.zst
nixpkgs-afa9c4ae684a4539a677f80539c1c2640fbaa1dc.zip
mlt: requires python3
Diffstat (limited to 'pkgs/development/libraries/mlt')
-rw-r--r--pkgs/development/libraries/mlt/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/mlt/default.nix b/pkgs/development/libraries/mlt/default.nix
index 8bd2bc80362..a4f0289cd58 100644
--- a/pkgs/development/libraries/mlt/default.nix
+++ b/pkgs/development/libraries/mlt/default.nix
@@ -3,7 +3,7 @@
 , libvorbis, libxml2, movit, pkg-config, sox, fftw, opencv4, SDL2
 , gtk2, genericUpdater, common-updater-scripts, libebur128
 , jack2, ladspa-sdk, swig, which, ncurses
-, enablePython ? false, python
+, enablePython ? false, python3
 }:
 
 stdenv.mkDerivation rec {
@@ -24,7 +24,9 @@ stdenv.mkDerivation rec {
   ] ++ lib.optional enablePython ncurses;
 
   nativeBuildInputs = [ pkg-config makeWrapper which ]
-  ++ lib.optionals enablePython [ python swig ];
+  ++ lib.optionals enablePython [ python3 swig ];
+
+  strictDeps = true;
 
   # Mostly taken from:
   # http://www.kdenlive.org/user-manual/downloading-and-installing-kdenlive/installing-source/installing-mlt-rendering-engine