summaryrefslogtreecommitdiff
path: root/mlt_my.nix
diff options
context:
space:
mode:
Diffstat (limited to 'mlt_my.nix')
-rw-r--r--mlt_my.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/mlt_my.nix b/mlt_my.nix
new file mode 100644
index 0000000..cd7d660
--- /dev/null
+++ b/mlt_my.nix
@@ -0,0 +1,20 @@
+{ inputs }:
+self: super: {
+ mlt_my =
+ with super;
+ (mlt.override {
+ # stdenv = llvmPackages_16.stdenv;
+ # ffmpeg = self.ffmpeg_my;
+ # opencv4 = (opencv4.override{enableFfmpeg = false;}).overrideAttrs (old: rec {
+ # }
+ # );
+ enablePython = true;
+ }).overrideAttrs
+ (old: rec {
+ version = "git";
+ src = fetchGit {
+ url = "https://github.com/mltframework/mlt";
+ ref = "master";
+ };
+ });
+}