mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-05 08:42:27 +01:00
27 lines
740 B
Nix
27 lines
740 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, ffmpeg, vapoursynth }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "d2vsource";
|
|
version = "1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dwbuiten";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1ax20qs1hba70r07pdw3gs4gylwb2ca4iz9ycmd9i5rvxaxy4hmp";
|
|
};
|
|
|
|
configureFlags = [ "--libdir=$(out)/lib/vapoursynth" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
buildInputs = [ ffmpeg vapoursynth ];
|
|
|
|
meta = with lib; {
|
|
description = "D2V parser and decoder for VapourSynth";
|
|
homepage = "https://github.com/dubhater/vapoursynth-cnr2";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ sbruder ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|