nixpkgs/pkgs/applications/kde/kdenlive/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

127 lines
2.2 KiB
Nix
Raw Normal View History

{ mkDerivation
2024-07-04 14:43:36 +02:00
, substituteAll
, lib
, extra-cmake-modules
, breeze-icons
, breeze-qt5
, kdoctools
, kconfig
, kcrash
, kguiaddons
, kiconthemes
, ki18n
, kinit
, kdbusaddons
, knotifications
, knewstuff
, karchive
, knotifyconfig
, kplotting
, ktextwidgets
2023-08-24 12:59:41 +02:00
, mediainfo
, mlt
, shared-mime-info
, libv4l
2016-08-12 11:38:37 +02:00
, kfilemetadata
, ffmpeg-full
, frei0r
, phonon-backend-gstreamer
2017-10-24 13:41:09 +02:00
, qtdeclarative
, qtmultimedia
, qtnetworkauth
2020-07-13 21:48:47 +02:00
, qtquickcontrols2
2017-10-24 13:41:09 +02:00
, qtscript
2019-04-22 23:25:18 +02:00
, rttr
, kpurpose
, kdeclarative
, wrapGAppsHook3
2024-03-26 23:57:27 +01:00
, glaxnimate
}:
2023-12-07 12:33:28 +01:00
let
mlt-full = mlt.override {
ffmpeg = ffmpeg-full;
};
in
2017-05-16 17:56:41 +02:00
mkDerivation {
2020-12-25 00:05:07 +01:00
pname = "kdenlive";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
breeze-icons
breeze-qt5
2016-08-12 11:38:37 +02:00
kconfig
kcrash
2017-05-17 21:26:11 +02:00
kdbusaddons
kfilemetadata
kguiaddons
2017-05-17 21:26:11 +02:00
ki18n
kiconthemes
2016-08-12 11:38:37 +02:00
kinit
knotifications
knewstuff
karchive
knotifyconfig
kplotting
ktextwidgets
2023-08-24 12:59:41 +02:00
mediainfo
2023-12-07 12:33:28 +01:00
mlt-full
2017-05-17 21:26:11 +02:00
phonon-backend-gstreamer
2017-10-24 13:41:09 +02:00
qtdeclarative
qtmultimedia
qtnetworkauth
2020-07-13 21:48:47 +02:00
qtquickcontrols2
2017-05-17 21:26:11 +02:00
qtscript
shared-mime-info
libv4l
ffmpeg-full
frei0r
2019-04-22 23:25:18 +02:00
rttr
kpurpose
kdeclarative
wrapGAppsHook3
2024-07-02 09:46:12 +02:00
];
2024-07-04 14:43:36 +02:00
# Both MLT and FFMpeg paths must be set or Kdenlive will complain that it
# doesn't find them. See:
# https://github.com/NixOS/nixpkgs/issues/83885
2024-07-04 14:43:36 +02:00
patches = [
(
substituteAll {
src = ./dependency-paths.patch;
inherit mediainfo glaxnimate;
ffmpeg = ffmpeg-full;
mlt = mlt-full;
}
)
];
2023-08-24 12:59:41 +02:00
2017-05-17 21:26:11 +02:00
postPatch =
# Module Qt5::Concurrent must be included in `find_package` before it is used.
''
sed -i CMakeLists.txt -e '/find_package(Qt5 REQUIRED/ s|)| Concurrent)|'
'';
2020-11-01 17:53:43 +01:00
dontWrapGApps = true;
# Frei0r path needs to be set too or Kdenlive will complain. See:
# https://github.com/NixOS/nixpkgs/issues/83885
# https://github.com/NixOS/nixpkgs/issues/29614#issuecomment-488849325
qtWrapperArgs = [
"--set FREI0R_PATH ${frei0r}/lib/frei0r-1"
];
2020-11-01 17:53:43 +01:00
preFixup = ''
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
meta = {
homepage = "https://apps.kde.org/kdenlive/";
description = "Video editor";
2016-08-12 11:38:37 +02:00
license = with lib.licenses; [ gpl2Plus ];
2021-06-09 11:29:28 +02:00
maintainers = with lib.maintainers; [ turion ];
};
}