2021-10-15 19:48:49 +01:00
|
|
|
{ lib, mkDerivation, fetchFromGitHub, makeWrapper, runCommand
|
2019-06-25 23:53:32 +01:00
|
|
|
, python3, vapoursynth
|
|
|
|
, qmake, qtbase, qtwebsockets
|
|
|
|
}:
|
|
|
|
|
2021-01-25 19:19:33 +00:00
|
|
|
let
|
|
|
|
unwrapped = mkDerivation rec {
|
|
|
|
pname = "vapoursynth-editor";
|
2021-10-15 19:48:49 +01:00
|
|
|
version = "R19-mod-4";
|
2021-01-25 19:19:33 +00:00
|
|
|
|
2021-10-15 19:48:49 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "YomikoR";
|
2021-01-25 19:19:33 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = lib.toLower version;
|
2021-10-15 19:48:49 +01:00
|
|
|
sha256 = "sha256-+/9j9DJDGXbuTvE8ZXIu6wjcof39SyatS36Q6y9hLPg=";
|
2021-01-25 19:19:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
|
|
buildInputs = [ qtbase vapoursynth qtwebsockets ];
|
|
|
|
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
|
|
|
preConfigure = "cd pro";
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
cd ../build/release*
|
|
|
|
mkdir -p $out/bin
|
|
|
|
for bin in vsedit{,-job-server{,-watcher}}; do
|
|
|
|
mv $bin $out/bin
|
|
|
|
wrapQtApp $out/bin/$bin
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = { inherit withPlugins; };
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Cross-platform editor for VapourSynth scripts";
|
2021-10-15 19:48:49 +01:00
|
|
|
homepage = "https://github.com/YomikoR/VapourSynth-Editor";
|
2021-01-25 19:19:33 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ tadeokondrak ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
2019-06-25 23:53:32 +01:00
|
|
|
};
|
|
|
|
|
2021-01-25 19:19:33 +00:00
|
|
|
withPlugins = plugins: let
|
|
|
|
vapoursynthWithPlugins = vapoursynth.withPlugins plugins;
|
|
|
|
in runCommand "${unwrapped.name}-with-plugins" {
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
passthru = { withPlugins = plugins': withPlugins (plugins ++ plugins'); };
|
|
|
|
} ''
|
2019-06-25 23:53:32 +01:00
|
|
|
mkdir -p $out/bin
|
|
|
|
for bin in vsedit{,-job-server{,-watcher}}; do
|
2021-01-25 19:19:33 +00:00
|
|
|
makeWrapper ${unwrapped}/bin/$bin $out/bin/$bin \
|
|
|
|
--prefix PYTHONPATH : ${vapoursynthWithPlugins}/${python3.sitePackages} \
|
|
|
|
--prefix LD_LIBRARY_PATH : ${vapoursynthWithPlugins}/lib
|
2019-06-25 23:53:32 +01:00
|
|
|
done
|
|
|
|
'';
|
2021-01-25 19:19:33 +00:00
|
|
|
in
|
|
|
|
withPlugins []
|