From 9903442a8d008169bbdced7c83cee6b652f41747 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Fri, 22 Jan 2021 15:51:44 +0100 Subject: [PATCH] vapoursynthPlugins.lsmashsource: 2017-08-12 -> 2019-09-15 This also adds metadata to the package. --- plugins/descale/default.nix | 2 +- plugins/lsmashsource/default.nix | 16 ++++++++++++---- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/plugins/descale/default.nix b/plugins/descale/default.nix index e20bab9..44d6180 100644 --- a/plugins/descale/default.nix +++ b/plugins/descale/default.nix @@ -28,7 +28,7 @@ python3.pkgs.toPythonModule (stdenv.mkDerivation rec { description = "VapourSynth plugin to undo upscaling"; homepage = "https://github.com/Irrational-Encoding-Wizardry/vapoursynth-descale"; license = licenses.wtfpl; - maintainers = with maintainers; [ tadeokondrak ]; + maintainers = with maintainers; [ sbruder tadeokondrak ]; platforms = platforms.all; }; }) diff --git a/plugins/lsmashsource/default.nix b/plugins/lsmashsource/default.nix index 4dc55db..05a8abd 100644 --- a/plugins/lsmashsource/default.nix +++ b/plugins/lsmashsource/default.nix @@ -1,14 +1,14 @@ -{ stdenv, fetchFromGitHub, pkg-config, which, vapoursynth, ffmpeg, l-smash }: +{ lib, stdenv, fetchFromGitHub, pkg-config, which, vapoursynth, ffmpeg, l-smash }: stdenv.mkDerivation { pname = "lsmashsource"; - version = "unstable-2017-08-12"; # last (only) release is from 2013 and there has still been development + version = "unstable-2019-09-15"; # last (only) release is from 2013 and there has still been development src = fetchFromGitHub { owner = "VFR-maniac"; repo = "L-SMASH-Works"; - rev = "3edd194b1d82975cee67c0278556615c7d9ebd36"; - sha256 = "0q5xww6rkfi9vqwafpi9cvvywn1hx5fhkhqz0ck7x235cc3lb2qz"; + rev = "198cc7814c93209e23f1c6a20daffd651945ba2b"; + sha256 = "1pb8rrh184pxy5calwfnmm02i0by8vc91c07w4ygj50y8yfqa3br"; }; preConfigure = '' @@ -18,4 +18,12 @@ stdenv.mkDerivation { nativeBuildInputs = [ pkg-config which ]; buildInputs = [ vapoursynth ffmpeg l-smash ]; + + meta = with lib; { + description = "L-SMASH source plugin for VapourSynth"; + homepage = "https://github.com/VFR-maniac/L-SMASH-Works"; + license = with licenses; [ isc lgpl21Plus ]; + maintainers = with maintainers; [ tadeokondrak ]; + platforms = platforms.all; + }; }