diff --git a/pkgs/by-name/va/vapoursynth-mvtools/package.nix b/pkgs/by-name/va/vapoursynth-mvtools/package.nix new file mode 100644 index 000000000000..41ae1a11ccee --- /dev/null +++ b/pkgs/by-name/va/vapoursynth-mvtools/package.nix @@ -0,0 +1,41 @@ +{ + lib, + stdenv, + fetchFromGitHub, + pkg-config, + autoreconfHook, + vapoursynth, + nasm, + fftwFloat, +}: + +stdenv.mkDerivation rec { + pname = "vapoursynth-mvtools"; + version = "24"; + + src = fetchFromGitHub { + owner = "dubhater"; + repo = "vapoursynth-mvtools"; + rev = "v${version}"; + hash = "sha256-bEifU1PPNOBr6o9D6DGIzTaG4xjygBxkQYnZxd/4SwQ="; + }; + + nativeBuildInputs = [ + pkg-config + autoreconfHook + ]; + buildInputs = [ + nasm + vapoursynth + fftwFloat + ]; + + configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ]; + + meta = with lib; { + description = "Set of filters for motion estimation and compensation"; + homepage = "https://github.com/dubhater/vapoursynth-mvtools"; + license = licenses.gpl2; + maintainers = with maintainers; [ rnhmjoj ]; + }; +} diff --git a/pkgs/development/libraries/vapoursynth-mvtools/default.nix b/pkgs/development/libraries/vapoursynth-mvtools/default.nix deleted file mode 100644 index 8ddc1d88fe44..000000000000 --- a/pkgs/development/libraries/vapoursynth-mvtools/default.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook, - vapoursynth, nasm, fftwFloat -}: - -stdenv.mkDerivation rec { - pname = "vapoursynth-mvtools"; - version = "23"; - - src = fetchFromGitHub { - owner = "dubhater"; - repo = "vapoursynth-mvtools"; - rev = "v${version}"; - sha256 = "0lngkvxnzn82rz558nvl96rvclrck07ja1pny7wcfixp9b68ppkn"; - }; - - nativeBuildInputs = [ pkg-config autoreconfHook ]; - buildInputs = [ - nasm vapoursynth fftwFloat - ]; - - configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ]; - - meta = with lib; { - description = "Set of filters for motion estimation and compensation"; - homepage = "https://github.com/dubhater/vapoursynth-mvtools"; - license = licenses.gpl2; - maintainers = with maintainers; [ rnhmjoj ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5c475984d2e1..7c50cca3a7cb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -19840,8 +19840,6 @@ with pkgs; vapoursynth-editor = libsForQt5.callPackage ../by-name/va/vapoursynth/editor.nix { }; - vapoursynth-mvtools = callPackage ../development/libraries/vapoursynth-mvtools { }; - vmmlib = callPackage ../development/libraries/vmmlib { inherit (darwin.apple_sdk.frameworks) Accelerate CoreGraphics CoreVideo; };