vapoursynth-mvtools: move to by-name and reformat

This commit is contained in:
rnhmjoj 2024-09-14 12:14:42 +02:00
parent 80552a6a33
commit 77e8114f72
No known key found for this signature in database
GPG Key ID: BFBAF4C975F76450
2 changed files with 21 additions and 11 deletions

View File

@ -1,5 +1,12 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook,
vapoursynth, nasm, fftwFloat
{
lib,
stdenv,
fetchFromGitHub,
pkg-config,
autoreconfHook,
vapoursynth,
nasm,
fftwFloat,
}:
stdenv.mkDerivation rec {
@ -7,15 +14,20 @@ stdenv.mkDerivation rec {
version = "24";
src = fetchFromGitHub {
owner = "dubhater";
repo = "vapoursynth-mvtools";
rev = "v${version}";
hash = "sha256-bEifU1PPNOBr6o9D6DGIzTaG4xjygBxkQYnZxd/4SwQ=";
owner = "dubhater";
repo = "vapoursynth-mvtools";
rev = "v${version}";
hash = "sha256-bEifU1PPNOBr6o9D6DGIzTaG4xjygBxkQYnZxd/4SwQ=";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
nativeBuildInputs = [
pkg-config
autoreconfHook
];
buildInputs = [
nasm vapoursynth fftwFloat
nasm
vapoursynth
fftwFloat
];
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
@ -23,7 +35,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Set of filters for motion estimation and compensation";
homepage = "https://github.com/dubhater/vapoursynth-mvtools";
license = licenses.gpl2;
license = licenses.gpl2;
maintainers = with maintainers; [ rnhmjoj ];
};
}

View File

@ -19842,8 +19842,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;
};