Commit Graph

62 Commits (947e443e02acc92200e45c568d2e4787242da6f2)

Author SHA1 Message Date
Peter Simons a4c82bcd7a mlt: update to version 6.24.0 2021-02-04 21:59:19 +01:00
Pavol Rusnak a6ce00c50c
treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
Ben Siraphob 66e44425c6 pkgs/development/libraries: stdenv.lib -> lib 2021-01-21 19:11:02 -08:00
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00
Ben Siraphob 3ae5e6ce03 treewide: remove enableParallelBuilding = true if using cmake 2021-01-03 18:37:40 +07:00
Frank Doepper 05440fda6f shotcut: use qt-5.15, rework
- use qt-5.15 for shotcut
- use qt mkDerivation for mlt/qt5
- use only mlt/qt5 for shotcut (libmlt -> mlt.dev)
- fix enabling ladspa (configure needs `which`), closes #47440
2020-11-26 21:35:14 +01:00
Frederik Rietdijk c3d017eee3 libsForQt515.mlt: is not broken 2020-11-01 23:38:03 +01:00
Peter Simons 61616535b9 mlt: add libexif, gtk2, fftw, libebur128, opencv4, and SDL2 dependencies
This enables more optional features. I'm not sure what the difference is
between mlt and mlt-qt5. I suppose both derivations should be kept in sync?
2020-09-27 20:12:04 +02:00
Frank Doepper c835358078 shotcut: 20.07.11 -> 20.09.13, mlt: 6.20.0 -> 6.22.1
and add updateScript
2020-09-25 21:12:40 +02:00
Thomas Tuegel 91bee6f06c mlt: broken with Qt 5.15 2020-09-07 08:05:40 -05:00
Michael Reilly 84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Peter Simons 05ab8c6d4c mlt: update from version 6.18.0 to 6.20.0 2020-02-28 16:42:29 +01:00
Peter Simons 605bd8c543 mlt: update from version 6.16.0 to 6.18.0 2020-01-05 14:17:51 +01:00
Robin Gloster f9f46dc327
treewide: NIX_*_FLAGS -> string 2019-12-31 00:15:46 +01:00
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
markuskowa f73fd8068e
Merge pull request #65155 from magnetophon/mlt-qt5
mlt-qt5: 6.14.0 -> 6.16.0
2019-07-24 13:31:17 +02:00
Bart Brouns 14a3e30deb mlt-qt5: 6.14.0 -> 6.16.0 2019-07-20 12:17:42 +02:00
Bart Brouns b2830bea2d mlt: 6.10.0 -> 6.16.0 2019-07-20 12:16:01 +02:00
R. RyanTM f8376f17a7 libsForQt5.mlt: 6.12.0 -> 6.14.0 (#58724)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mlt/versions
2019-04-08 23:53:18 +02:00
R. RyanTM b0f912b6d9 libsForQt5.mlt: 6.10.0 -> 6.12.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/mlt/versions
2018-12-25 06:55:30 -08:00
volth 52f53c69ce pkgs/*: remove unreferenced function arguments 2018-07-21 02:48:04 +00:00
R. RyanTM e458e1307c mlt: 6.8.0 -> 6.10.0 (#43331)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mlt/versions.
2018-07-14 21:51:42 +02:00
R. RyanTM 34da985941 libsForQt5.mlt: 6.8.0 -> 6.10.0 (#42976)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mlt/versions.

Version release notes (from GitHub):
This version fixes bugs and supports serializing animation keyframes with a
specified time format (previously only frame number).

**Framework**

  * Reverted mlt_pool change in v6.8.0 pending further testing.
    (USE_MLT_POOL compiler define is now a 0/1 boolean, defaults to 1.)
  * Fixed crash regression in v6.8.0 "parsing non-animated string as an animation."
  * Added pointer checks to mlt_animation.
  * Changed producer cache size heuristic in mlt_multitrack to be more liberal.
  * Fixed handling reserved characters in names for YAML in mlt_properties.
  * Added clamping to prevent computing negative in and out points to mlt_producer.
  * Added functions to serialize animation with a time format:
    - mlt_animation_serialize_cut_tf()
    - mlt_animation_serialize_tf()
    - mlt_property_get_string_tf()
    - mlt_property_get_string_l_tf()
    - mlt_properties_get_value_tf()
    - Mlt::Properties::get(int, mlt_time_format)
    - Mlt::Animation::serialize_cut(mlt_time_format, int, int)
  * Added functions to clear a property to mlt_properties:
    - mlt_property_clear()
    - mlt_properties_clear()
    - Mlt::Properties::clear()

**Modules**

  * Fixed enabling sliced pix_fmt conversion in avformat producer.
  * Fixed incorrect seek and sync on audio files with discard packets.
  * Added support for avcodec_send_frame() API to avformat consumer.
  * Fixed compile errors with Libav master.
  * Fixed a crash in affine transition.
  * Fixed a crash in ladspa filters when consumer frame rate is low (e.g. <= 8).
  * Fixed a crash in boxblur filter.
  * Added animation support to boxblur hori and vert properties.
  * Fixed a crash in movit.convert.
  * Fixed incorrect alpha in affine transition blending routine.
  * Converted frei0r from deprecated mlt_geometry to mlt_animation API.
  * Fixed tilde in text string for pango producer.
  * Fixed using more than one channelcopy filter.
  * Fixed the mono filter reducing volume level.
  * Fixed degraded audio scrubbing in sdl2_audio consumer.
  * Converted dynamictext filter to use affine transition for more correct
    alpha compositing and sub-pixel positioning.
  * Added time format support for animation keyframes to the xml consumer.
  * Added animation support to more affine transition properties:
    - fix_rotate_x
    - fix_rotate_y
    - fix_rotate_z
    - fix_shear_x
    - fix_shear_y
    - fix_shear_z
    - ox
    - oy
    - scale_x
    - scale_y
  * Fixed gaps in text when characters overlap in qtext and kdenlive producers.
  * Fixed a crash in pixbuf producer with multiple render threads.
  * Converted the oldfilm vignette filter from mlt_geometry to mlt_animation.

**Other**

  * Numerous updates to mlt-xml.dtd.
  * Categorized many of the encode presets (using meta.preset.name).

These checks were done:

- built on NixOS
- /nix/store/jfzwhslr6ndh2wc4bl3vdm4kdk2xdk7a-mlt-6.10.0/bin/melt passed the binary check.
- /nix/store/jfzwhslr6ndh2wc4bl3vdm4kdk2xdk7a-mlt-6.10.0/bin/.melt-wrapped passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 6.10.0 with grep in /nix/store/jfzwhslr6ndh2wc4bl3vdm4kdk2xdk7a-mlt-6.10.0
- directory tree listing: https://gist.github.com/5b163c9c1aa200eba8db3bde8c8b09b1
- du listing: https://gist.github.com/ddb0aac5012b87f121601378fca1f0bd
2018-07-09 16:06:47 +02:00
R. RyanTM 28c1c0ab26 mlt: 6.6.0 -> 6.8.0 (#40653)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mlt/versions.

These checks were done:

- built on NixOS
- /nix/store/xsmh09whsj39h5hc7g0ljj344i5i70zk-mlt-6.8.0/bin/melt passed the binary check.
- /nix/store/xsmh09whsj39h5hc7g0ljj344i5i70zk-mlt-6.8.0/bin/.melt-wrapped passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 6.8.0 with grep in /nix/store/xsmh09whsj39h5hc7g0ljj344i5i70zk-mlt-6.8.0
- directory tree listing: https://gist.github.com/3a7f7c995e0d2d7232ab28093ddd4613
- du listing: https://gist.github.com/c8e940fb79b09b1aeee2243a1fff57ca
2018-05-19 17:17:18 +02:00
R. RyanTM c56dcb430d libsForQt5.mlt: 6.6.0 -> 6.8.0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mlt/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/xp3sq5n9xcqwibdcwlnw1kndc67ykpb9-mlt-6.8.0/bin/melt -h’ got 0 exit code
- ran ‘/nix/store/xp3sq5n9xcqwibdcwlnw1kndc67ykpb9-mlt-6.8.0/bin/melt --help’ got 0 exit code
- ran ‘/nix/store/xp3sq5n9xcqwibdcwlnw1kndc67ykpb9-mlt-6.8.0/bin/melt help’ got 0 exit code
- ran ‘/nix/store/xp3sq5n9xcqwibdcwlnw1kndc67ykpb9-mlt-6.8.0/bin/.melt-wrapped -h’ got 0 exit code
- ran ‘/nix/store/xp3sq5n9xcqwibdcwlnw1kndc67ykpb9-mlt-6.8.0/bin/.melt-wrapped --help’ got 0 exit code
- ran ‘/nix/store/xp3sq5n9xcqwibdcwlnw1kndc67ykpb9-mlt-6.8.0/bin/.melt-wrapped help’ got 0 exit code
- found 6.8.0 with grep in /nix/store/xp3sq5n9xcqwibdcwlnw1kndc67ykpb9-mlt-6.8.0
- directory tree listing: https://gist.github.com/486acd53034e92704cc044a92c6e32ef
- du listing: https://gist.github.com/ff98100a51f78de609043361454df0b1
2018-05-14 01:08:45 -07:00
Jörg Thalheim e044db3974 mlt: 6.4.1 -> 6.6.0
fix opencv incompatibility reported in #36170
2018-03-02 14:05:23 +00:00
Samuel Dionne-Riel 7b97c8c0c8 treewide: homepage+src updates (found by repology, #33263) 2018-01-05 20:42:46 +01:00
Thomas Tuegel 094d088135
Merge pull request #31357 from ttuegel/qt-5-tmp
Qt 5: revert 5.9.2; remove build temporary directory
2017-11-08 16:06:38 -06:00
Piotr Bogdan 2704fdd710 mlt: fix build with glibc-2.26
see https://github.com/mltframework/mlt/pull/248
2017-11-08 17:35:48 +00:00
Thomas Tuegel afac783343
mlt: extra CFLAGS for QtSvg 2017-11-07 07:18:48 -06:00
Cillian de Róiste 5c7edf239f mlt: fix homepage 2017-08-03 23:03:03 +02:00
Tomas Hlavaty 2b4ad8d34e mlt: 6.2.0 -> 6.4.1 2017-04-21 00:20:49 +02:00
Eelco Dolstra 747ad4befd mlt: Remove some -dev paths from the closure
This reduces the closure size of mlt-qt5 from 683 to 278 MiB.
2017-04-02 21:51:46 +02:00
Thomas Tuegel 9af7f6b9d4
Remove kde4.kdenlive and dependencies
- Already updated to KDE 5 in Nixpkgs
2017-02-24 16:49:03 -06:00
Lluís Batlle i Rossell 8d5b2e66bd Updating shotcut to 17.01 and fixing its jobs 2017-01-28 20:12:51 +01:00
Lluís Batlle i Rossell 20465bedee Updating shotcut and melt. 2017-01-28 20:12:51 +01:00
Thomas Tuegel 23e0d4ae67
qt5.mlt: fix build with Qt 5.7 2016-09-07 20:51:38 -05:00
Tomas Hlavaty e444532046 mlt: 0.9.6 -> 6.2.0 (#17725)
The old version with qt4 is kept around for kdenlive dependency.
2016-08-17 16:09:58 +02:00
Lluís Batlle i Rossell 9f9cac34d3 Updating mlt to 6.2.0
(cherry picked from commit 93d8ab8007102e0e4d7f23cf25bb353d1cc5bced)

I checked with kdenlive people, and they say that we should always use the
latest mlt possible; that it should not be any problem, and provide only
improvements.
2016-08-17 10:06:30 +02:00
Lluís Batlle i Rossell 17f0cce445 Adding the mlt version that matches kdenlive 15.12.
(cherry picked from commit 008f88ae6f0aa43cf0dc4e36f059ee03e1a0b99b)
2016-08-12 15:38:04 +02:00
Thomas Tuegel 26cf5db23f mlt: Qt 5 infrastructure update 2015-12-20 07:56:39 -06:00
Cillian de Róiste 9b0c75994a mlt-qt5: update from 0.9.6 to 0.9.8 2015-10-25 19:09:29 +01:00
Thomas Tuegel 50f76e0625 mlt-qt5: build with Qt 5.5 2015-09-27 15:09:49 -05:00
William A. Kennington III 7297255019 Convert all jack references to libjack2 2015-06-27 00:17:52 -07:00
Cillian de Róiste 6455404f1b mlt-qt4: update from 0.9.2 to 0.9.6 2015-06-09 15:51:37 +02:00
Thomas Tuegel 55a2edb893 mlt-qt5: fix build with Qt 5.4 2015-05-07 21:49:53 -05:00
Cillian de Róiste 86133bb6bf melt: use ffmpeg instead of libav, fixes libx264 export 2014-08-05 00:36:14 +02:00
Bjørn Forsman 62d0a320b3 Revert "Remove obsolete jackaudio version 1."
This reverts commit bdb77826d9.

Jack1 is not obsolete and neither jack1 nor jack2 is called 'jackaudio'.

Q: What's the difference between Jack1 and Jack2?
A: http://trac.jackaudio.org/wiki/Q_differenc_jack1_jack2
2014-07-31 12:52:29 +02:00
Peter Simons bdb77826d9 Remove obsolete jackaudio version 1. 2014-07-28 20:32:52 +02:00
Cillian de Róiste 1f9334cab3 MLT: 0.9.0 -> 0.9.2, add movit and frei0r plugins, add qt4 and qt5 variants
Shotcut segfaults on startup when compiled against an MLT which was
built with qt4. Kdenlive seqfaults when compiled against an MLT which
was built with qt5. Hence the need for the two variants.

Also, I'm adopting MLT as a maintainer.
2014-07-27 12:53:56 +02:00