vapoursynthPlugins.hqdn3d: init at unstable-2018-06-29

pull/2/head
Simon Bruder 2021-01-23 12:47:46 +01:00 committed by Tadeo Kondrak
parent d6fd1d9ee8
commit ef973c870e
2 changed files with 27 additions and 0 deletions

View File

@ -21,6 +21,7 @@ self: super: {
fft3dfilter = super.callPackage ./plugins/fft3dfilter { };
fmtconv = super.callPackage ./plugins/fmtconv { };
histogram = super.callPackage ./plugins/histogram { };
hqdn3d = super.callPackage ./plugins/hqdn3d { };
knlmeanscl = super.callPackage ./plugins/knlmeanscl { };
lsmashsource = super.callPackage ./plugins/lsmashsource { };
median = super.callPackage ./plugins/median { };

View File

@ -0,0 +1,26 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, vapoursynth }:
stdenv.mkDerivation rec {
pname = "vapoursynth-hqdn3d";
version = "unstable-2018-06-29";
src = fetchFromGitHub {
owner = "Hinterwaeldlers";
repo = pname;
rev = "eb820cb23f7dc47eb67ea95def8a09ab69251d30";
sha256 = "05a01ymb5ncxgp5iy6i8ka9ysw9i6n188a2c2na6whf6rrkcgrh4";
};
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ vapoursynth ];
meta = with lib; {
description = "Vapoursynth port of hqdn3d from avisynth/mplayer";
homepage = "https://github.com/Hinterwaeldlers/vapoursynth-hqdn3d";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.all;
};
}