2021-01-22 17:10:08 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, wafHook, python3, vapoursynth }:
|
2019-06-26 01:40:02 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "flash3kyuu_deband";
|
|
|
|
version = "2.0.0-1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "SAPikachu";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0qfm85z2r9kr56i406bfz04wb92amkrsgbhdrp0dpfp6xvhv72nj";
|
|
|
|
};
|
|
|
|
|
|
|
|
wafConfigureFlags = [ "--libdir=${placeholder "out"}/lib/vapoursynth" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ wafHook python3 ];
|
|
|
|
buildInputs = [ vapoursynth ];
|
|
|
|
|
2021-01-22 17:10:08 +01:00
|
|
|
meta = with lib; {
|
2019-06-26 01:40:02 +02:00
|
|
|
description = "A deband library and filter for AviSynth/VapourSynth";
|
2021-01-22 17:22:37 +01:00
|
|
|
homepage = "https://github.com/SAPikachu/flash3kyuu_deband";
|
2019-06-26 01:40:02 +02:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ tadeokondrak ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|