mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-17 22:52:26 +01:00
Simon Bruder
eeceb7e2e4
When overriding the python3 dependency of vapoursynth, it should get propagated to all plugins. Currently, however, this causes incompatibilities, because `vapoursynth.python3.callPackage` only sets the `python` attribute, not `python3`. This currently causes build failures due to different site-packages paths.
35 lines
1 KiB
Nix
35 lines
1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth, python }:
|
||
|
||
# required to make python.buildEnv use descale’s python module
|
||
python.pkgs.toPythonModule (stdenv.mkDerivation rec {
|
||
pname = "vapoursynth-descale";
|
||
version = "r6";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "Irrational-Encoding-Wizardry";
|
||
repo = pname;
|
||
rev = version;
|
||
sha256 = "093dk125y4gacvhrh10x1i5g2qbsjl4spz74gjjm7xbvrvi1sc72";
|
||
};
|
||
|
||
nativeBuildInputs = [ meson ninja pkg-config ];
|
||
buildInputs = [ vapoursynth ];
|
||
|
||
postPatch = ''
|
||
substituteInPlace meson.build \
|
||
--replace "vs.get_pkgconfig_variable('libdir')" "get_option('libdir')"
|
||
'';
|
||
|
||
postInstall = ''
|
||
install -D ../descale.py $out/${python.sitePackages}/descale.py
|
||
'';
|
||
|
||
meta = with lib; {
|
||
description = "VapourSynth plugin to undo upscaling";
|
||
homepage = "https://github.com/Irrational-Encoding-Wizardry/vapoursynth-descale";
|
||
license = licenses.wtfpl;
|
||
maintainers = with maintainers; [ sbruder tadeokondrak ];
|
||
platforms = platforms.all;
|
||
};
|
||
})
|