Merge pull request #63876 from tadeokondrak/vs-r46

vapoursynth: R45.1 -> R46
This commit is contained in:
Matthieu Coudron 2019-07-04 10:27:52 +02:00 committed by GitHub
commit 016c234c4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 6 deletions

View File

@ -12,13 +12,13 @@ with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "vapoursynth-${version}"; name = "vapoursynth-${version}";
version = "R45.1"; version = "R46";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "vapoursynth"; owner = "vapoursynth";
repo = "vapoursynth"; repo = "vapoursynth";
rev = version; rev = version;
sha256 = "09fj4k75cksx1imivqfyr945swlr8k392kkdgzldwc4404qv82s6"; sha256 = "1xbwva12l68awplardf47ydlx904wifw468npaxa9cx9dvd5mv13";
}; };
nativeBuildInputs = [ pkgconfig autoreconfHook nasm ]; nativeBuildInputs = [ pkgconfig autoreconfHook nasm ];

View File

@ -1,18 +1,20 @@
{ stdenv, fetchFromGitHub, autoreconfHook }: { stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec{ stdenv.mkDerivation rec {
name = "zimg-${version}"; pname = "zimg";
version = "2.8"; version = "2.9.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "sekrit-twc"; owner = "sekrit-twc";
repo = "zimg"; repo = "zimg";
rev = "release-${version}"; rev = "release-${version}";
sha256 = "0s4n1swg1hgv81l8hvf0ny0fn305vf6l6dakbj452304p6ihxd83"; sha256 = "0q9migrxyp5wc6lcl6gnfs1zwn1ncqna6cm7vz3c993vvmgdf1p9";
}; };
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook ];
enableParallelBuilding = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Scaling, colorspace conversion and dithering library"; description = "Scaling, colorspace conversion and dithering library";
homepage = https://github.com/sekrit-twc/zimg; homepage = https://github.com/sekrit-twc/zimg;