Unverified Commit d30b535c authored by Michele Guerini Rocco's avatar Michele Guerini Rocco Committed by GitHub
Browse files

vapoursynth-mvtools: 23 -> 24, move to by-name and reformat (#341794)

parents c4ee3c1c 77e8114f
Loading
Loading
Loading
Loading
+41 −0
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, pkg-config, autoreconfHook,
  vapoursynth, nasm, fftwFloat
{
  lib,
  stdenv,
  fetchFromGitHub,
  pkg-config,
  autoreconfHook,
  vapoursynth,
  nasm,
  fftwFloat,
}:

stdenv.mkDerivation rec {
  pname = "vapoursynth-mvtools";
  version = "23";
  version = "24";

  src = fetchFromGitHub {
    owner = "dubhater";
    repo = "vapoursynth-mvtools";
    rev = "v${version}";
    sha256 = "0lngkvxnzn82rz558nvl96rvclrck07ja1pny7wcfixp9b68ppkn";
    hash = "sha256-bEifU1PPNOBr6o9D6DGIzTaG4xjygBxkQYnZxd/4SwQ=";
  };

  nativeBuildInputs = [ pkg-config autoreconfHook ];
  nativeBuildInputs = [
    pkg-config
    autoreconfHook
  ];
  buildInputs = [
    nasm vapoursynth fftwFloat
    nasm
    vapoursynth
    fftwFloat
  ];

  configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
+0 −2
Original line number Diff line number Diff line
@@ -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;
  };