vapoursynth-mvtools: move to by-name and reformat
This commit is contained in:
parent
80552a6a33
commit
77e8114f72
@ -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 {
|
stdenv.mkDerivation rec {
|
||||||
@ -7,15 +14,20 @@ stdenv.mkDerivation rec {
|
|||||||
version = "24";
|
version = "24";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dubhater";
|
owner = "dubhater";
|
||||||
repo = "vapoursynth-mvtools";
|
repo = "vapoursynth-mvtools";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-bEifU1PPNOBr6o9D6DGIzTaG4xjygBxkQYnZxd/4SwQ=";
|
hash = "sha256-bEifU1PPNOBr6o9D6DGIzTaG4xjygBxkQYnZxd/4SwQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
nativeBuildInputs = [
|
||||||
|
pkg-config
|
||||||
|
autoreconfHook
|
||||||
|
];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
nasm vapoursynth fftwFloat
|
nasm
|
||||||
|
vapoursynth
|
||||||
|
fftwFloat
|
||||||
];
|
];
|
||||||
|
|
||||||
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
|
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
|
||||||
@ -23,7 +35,7 @@ stdenv.mkDerivation rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Set of filters for motion estimation and compensation";
|
description = "Set of filters for motion estimation and compensation";
|
||||||
homepage = "https://github.com/dubhater/vapoursynth-mvtools";
|
homepage = "https://github.com/dubhater/vapoursynth-mvtools";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ rnhmjoj ];
|
maintainers = with maintainers; [ rnhmjoj ];
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -19842,8 +19842,6 @@ with pkgs;
|
|||||||
|
|
||||||
vapoursynth-editor = libsForQt5.callPackage ../by-name/va/vapoursynth/editor.nix { };
|
vapoursynth-editor = libsForQt5.callPackage ../by-name/va/vapoursynth/editor.nix { };
|
||||||
|
|
||||||
vapoursynth-mvtools = callPackage ../development/libraries/vapoursynth-mvtools { };
|
|
||||||
|
|
||||||
vmmlib = callPackage ../development/libraries/vmmlib {
|
vmmlib = callPackage ../development/libraries/vmmlib {
|
||||||
inherit (darwin.apple_sdk.frameworks) Accelerate CoreGraphics CoreVideo;
|
inherit (darwin.apple_sdk.frameworks) Accelerate CoreGraphics CoreVideo;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user