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

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

126 lines
2.3 KiB
Nix
Raw Normal View History

{
mkDerivation,
2024-07-04 12:43:36 +00: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 10:59:41 +00:00
mediainfo,
mlt,
shared-mime-info,
libv4l,
2016-08-12 09:38:37 +00:00
kfilemetadata,
ffmpeg-full,
frei0r,
phonon-backend-gstreamer,
2017-10-24 11:41:09 +00:00
qtdeclarative,
qtmultimedia,
qtnetworkauth,
2020-07-13 19:48:47 +00:00
qtquickcontrols2,
2017-10-24 11:41:09 +00:00
qtscript,
2019-04-22 21:25:18 +00:00
rttr,
kpurpose,
kdeclarative,
wrapGAppsHook3,
2024-03-26 22:57:27 +00:00
glaxnimate,
}:
2023-12-07 11:33:28 +00:00
let
mlt-full = mlt.override {
ffmpeg = ffmpeg-full;
};
in
2017-05-16 15:56:41 +00:00
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kdenlive";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
buildInputs = [
breeze-icons
breeze-qt5
2016-08-12 09:38:37 +00:00
kconfig
kcrash
2017-05-17 19:26:11 +00:00
kdbusaddons
kfilemetadata
kguiaddons
2017-05-17 19:26:11 +00:00
ki18n
kiconthemes
2016-08-12 09:38:37 +00:00
kinit
knotifications
knewstuff
karchive
knotifyconfig
kplotting
ktextwidgets
2023-08-24 10:59:41 +00:00
mediainfo
2023-12-07 11:33:28 +00:00
mlt-full
2017-05-17 19:26:11 +00:00
phonon-backend-gstreamer
2017-10-24 11:41:09 +00:00
qtdeclarative
qtmultimedia
qtnetworkauth
2020-07-13 19:48:47 +00:00
qtquickcontrols2
2017-05-17 19:26:11 +00:00
qtscript
shared-mime-info
libv4l
ffmpeg-full
frei0r
2019-04-22 21:25:18 +00:00
rttr
kpurpose
kdeclarative
wrapGAppsHook3
2024-07-02 07:46:12 +00:00
];
2024-07-04 12:43:36 +00: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 12:43:36 +00:00
patches = [
(substituteAll {
src = ./dependency-paths.patch;
inherit mediainfo glaxnimate;
ffmpeg = ffmpeg-full;
mlt = mlt-full;
})
];
2023-08-24 10:59:41 +00:00
2017-05-17 19:26:11 +00: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 16:53:43 +00: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 16:53:43 +00:00
preFixup = ''
qtWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
meta = {
homepage = "https://apps.kde.org/kdenlive/";
description = "Video editor";
2016-08-12 09:38:37 +00:00
license = with lib.licenses; [ gpl2Plus ];
2021-06-09 09:29:28 +00:00
maintainers = with lib.maintainers; [ turion ];
};
}