diff --git a/default.nix b/default.nix index 327184b..07e04e4 100644 --- a/default.nix +++ b/default.nix @@ -17,7 +17,7 @@ self: super: { fmtconv = super.callPackage ./plugins/fmtconv { }; knlmeanscl = super.callPackage ./plugins/knlmeanscl { }; lsmashsource = super.callPackage ./plugins/lsmashsource { }; - mvtools = super.callPackage ./plugins/mvtools { }; + mvtools = super.vapoursynth-mvtools; nnedi3 = super.callPackage ./plugins/nnedi3 { }; retinex = super.callPackage ./plugins/retinex { }; sangnom = super.callPackage ./plugins/sangnom { }; diff --git a/plugins/mvtools/default.nix b/plugins/mvtools/default.nix deleted file mode 100644 index abdf9fb..0000000 --- a/plugins/mvtools/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ stdenv, fetchFromGitHub, pkgconfig, autoreconfHook, - vapoursynth, nasm, fftwFloat -}: - -stdenv.mkDerivation rec { - name = "vapoursynth-mvtools-${version}"; - version = "21"; - - src = fetchFromGitHub { - owner = "dubhater"; - repo = "vapoursynth-mvtools"; - rev = "v${version}"; - sha256 = "0vjxpp4jmmjhcp8z81idsbgq6jyx0l4r4i32b8alnp6c9fahjh6p"; - }; - - nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ - autoreconfHook - nasm vapoursynth fftwFloat - ]; - - configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ]; - - meta = with stdenv.lib; { - description = "A set of filters for motion estimation and compensation"; - homepage = https://github.com/dubhater/vapoursynth-mvtools; - license = licenses.gpl2; - maintainers = with maintainers; [ rnhmjoj ]; - }; -}