mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
97 lines
2.2 KiB
Nix
97 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
stdenv,
|
|
substituteAll,
|
|
SDL2,
|
|
frei0r,
|
|
ladspaPlugins,
|
|
gettext,
|
|
mlt,
|
|
jack1,
|
|
pkg-config,
|
|
fftw,
|
|
qt6,
|
|
cmake,
|
|
darwin,
|
|
gitUpdater,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "shotcut";
|
|
version = "24.09.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mltframework";
|
|
repo = "shotcut";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-hYpb3ZCRXd07KQVZ3xpNeEJY5HFLNDsqpPJp3b9UXtE=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
qt6.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
frei0r
|
|
ladspaPlugins
|
|
gettext
|
|
mlt
|
|
fftw
|
|
qt6.qtbase
|
|
qt6.qttools
|
|
qt6.qtmultimedia
|
|
qt6.qtcharts
|
|
qt6.qtwayland
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-DSHOTCUT_NOUPGRADE";
|
|
cmakeFlags = [ "-DSHOTCUT_VERSION=${finalAttrs.version}" ];
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
inherit mlt;
|
|
src = ./fix-mlt-ffmpeg-path.patch;
|
|
})
|
|
];
|
|
|
|
qtWrapperArgs = [
|
|
"--set FREI0R_PATH ${frei0r}/lib/frei0r-1"
|
|
"--set LADSPA_PATH ${ladspaPlugins}/lib/ladspa"
|
|
"--prefix LD_LIBRARY_PATH : ${
|
|
lib.makeLibraryPath ([ SDL2 ] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ jack1 ])
|
|
}"
|
|
];
|
|
|
|
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
mkdir $out/Applications $out/bin
|
|
mv $out/Shotcut.app $out/Applications/Shotcut.app
|
|
ln -s $out/Applications/Shotcut.app/Contents/MacOS/Shotcut $out/bin/shotcut
|
|
'';
|
|
|
|
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
|
|
|
|
meta = with lib; {
|
|
description = "Free, open source, cross-platform video editor";
|
|
longDescription = ''
|
|
An official binary for Shotcut, which includes all the
|
|
dependencies pinned to specific versions, is provided on
|
|
http://shotcut.org.
|
|
|
|
If you encounter problems with this version, please contact the
|
|
nixpkgs maintainer(s). If you wish to report any bugs upstream,
|
|
please use the official build from shotcut.org instead.
|
|
'';
|
|
homepage = "https://shotcut.org";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [
|
|
woffs
|
|
peti
|
|
];
|
|
platforms = platforms.unix;
|
|
mainProgram = "shotcut";
|
|
};
|
|
})
|