nixpkgs/pkgs/by-name/va/vapoursynth/editor.nix
nicoo 2641d97cbf pkgs/by-name: Convert hashes to SRI format
Reproduction script:
	# Bulk rewrite
	./maintainers/scripts/sha-to-sri.py pkgs/by-name
	# Revert some packages which will need manual intervention
	for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
		git checkout -- "pkgs/by-name/${n:0:2}/${n}"
	done
2024-09-15 11:24:31 +02:00

81 lines
1.7 KiB
Nix

{
lib,
mkDerivation,
fetchFromGitHub,
makeWrapper,
runCommand,
python3,
vapoursynth,
qmake,
qtbase,
qtwebsockets,
}:
let
unwrapped = mkDerivation rec {
pname = "vapoursynth-editor";
version = "R19-mod-4";
src = fetchFromGitHub {
owner = "YomikoR";
repo = pname;
rev = lib.toLower version;
hash = "sha256-+/9j9DJDGXbuTvE8ZXIu6wjcof39SyatS36Q6y9hLPg=";
};
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";
homepage = "https://github.com/YomikoR/VapourSynth-Editor";
license = licenses.mit;
maintainers = [ ];
platforms = platforms.all;
};
};
withPlugins =
plugins:
let
vapoursynthWithPlugins = vapoursynth.withPlugins plugins;
in
runCommand "${unwrapped.name}-with-plugins"
{
nativeBuildInputs = [ makeWrapper ];
passthru = {
withPlugins = plugins': withPlugins (plugins ++ plugins');
};
}
''
mkdir -p $out/bin
for bin in vsedit{,-job-server{,-watcher}}; do
makeWrapper ${unwrapped}/bin/$bin $out/bin/$bin \
--prefix PYTHONPATH : ${vapoursynthWithPlugins}/${python3.sitePackages} \
--prefix LD_LIBRARY_PATH : ${vapoursynthWithPlugins}/lib
done
'';
in
withPlugins [ ]