vapoursynthPlugins.lsmashsource: 2017-08-12 -> 2019-09-15

This also adds metadata to the package.
pull/2/head
Simon Bruder 2021-01-22 15:51:44 +01:00 committed by Tadeo Kondrak
parent 39b08efe85
commit 9903442a8d
2 changed files with 13 additions and 5 deletions

View File

@ -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;
};
})

View File

@ -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;
};
}