2021-01-22 17:10:08 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, vapoursynth }:
|
2019-06-26 01:40:02 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "vapoursynth-sangnom";
|
2021-01-22 15:57:45 +01:00
|
|
|
version = "r42";
|
2019-06-26 01:40:02 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dubhater";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-01-22 15:57:45 +01:00
|
|
|
sha256 = "0g9gr4lj5krwlkxb6fc1b408zj5gnl8v36hr66r27h9ndg12flfs";
|
2019-06-26 01:40:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
mesonFlags = [ "--libdir=${placeholder "out"}/lib/vapoursynth" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
|
|
|
buildInputs = [ vapoursynth ];
|
|
|
|
|
2021-01-22 17:10:08 +01:00
|
|
|
meta = with lib; {
|
2019-06-26 01:40:02 +02:00
|
|
|
description = "VapourSynth Single Field Deinterlacer";
|
2021-01-22 17:22:37 +01:00
|
|
|
homepage = "https://github.com/dubhater/vapoursynth-sangnom";
|
2019-06-26 01:40:02 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ tadeokondrak ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|