mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 17:02:25 +01:00
vapoursynthPlugins.nnedi3_rpow2: init at 1.1.0
This commit is contained in:
parent
c7950d90a7
commit
4efbbdd2e7
|
@ -47,6 +47,7 @@ in
|
||||||
|
|
||||||
adjust = callPythonPackage ./plugins/adjust { };
|
adjust = callPythonPackage ./plugins/adjust { };
|
||||||
edi_rpow2 = callPythonPackage ./plugins/edi_rpow2 { };
|
edi_rpow2 = callPythonPackage ./plugins/edi_rpow2 { };
|
||||||
|
nnedi3_rpow2 = callPythonPackage ./plugins/nnedi3_rpow2 { };
|
||||||
|
|
||||||
mvsfunc = callPythonPackage ./plugins/mvsfunc { };
|
mvsfunc = callPythonPackage ./plugins/mvsfunc { };
|
||||||
};
|
};
|
||||||
|
|
39
plugins/nnedi3_rpow2/default.nix
Normal file
39
plugins/nnedi3_rpow2/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{ lib, buildPythonPackage, fetchgit, vapoursynthPlugins, python3, vapoursynth }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "nnedi3_rpow2";
|
||||||
|
version = "1.1.0";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://gist.github.com/4re/342624c9e1a144a696c6";
|
||||||
|
rev = "68ec4bdff1e51a3832b163198ed7ea00e1c1ab46";
|
||||||
|
sha256 = "0i112kqkrlinnkkx4rjfmzpzax07mn8gxh2bnf13ccjpbpxigrnn";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with vapoursynthPlugins; [
|
||||||
|
fmtconv
|
||||||
|
nnedi3
|
||||||
|
nnedi3cl
|
||||||
|
znedi3
|
||||||
|
];
|
||||||
|
|
||||||
|
format = "other";
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -D nnedi3_rpow2.py $out/${python3.sitePackages}/nnedi3_rpow2.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
checkInputs = [ (vapoursynth.withPlugins propagatedBuildInputs) ];
|
||||||
|
checkPhase = ''
|
||||||
|
PYTHONPATH=$out/${python3.sitePackages}:$PYTHONPATH
|
||||||
|
'';
|
||||||
|
pythonImportsCheck = [ "nnedi3_rpow2" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A vapoursynth plugin for enlarging images by powers of 2";
|
||||||
|
homepage = "https://gist.github.com/4re/342624c9e1a144a696c6";
|
||||||
|
license = licenses.unfree; # no license
|
||||||
|
maintainers = with maintainers; [ sbruder ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue