mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 08:52:25 +01:00
vapoursynthPlugins.hqdn3d: init at unstable-2018-06-29
This commit is contained in:
parent
d6fd1d9ee8
commit
ef973c870e
|
@ -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 { };
|
||||
|
|
26
plugins/hqdn3d/default.nix
Normal file
26
plugins/hqdn3d/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue