mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-22 17:02:25 +01:00
vapoursynthPlugins.lsmashsource: 2017-08-12 -> 2019-09-15
This also adds metadata to the package.
This commit is contained in:
parent
39b08efe85
commit
9903442a8d
|
@ -28,7 +28,7 @@ python3.pkgs.toPythonModule (stdenv.mkDerivation rec {
|
||||||
description = "VapourSynth plugin to undo upscaling";
|
description = "VapourSynth plugin to undo upscaling";
|
||||||
homepage = "https://github.com/Irrational-Encoding-Wizardry/vapoursynth-descale";
|
homepage = "https://github.com/Irrational-Encoding-Wizardry/vapoursynth-descale";
|
||||||
license = licenses.wtfpl;
|
license = licenses.wtfpl;
|
||||||
maintainers = with maintainers; [ tadeokondrak ];
|
maintainers = with maintainers; [ sbruder tadeokondrak ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
|
@ -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 {
|
stdenv.mkDerivation {
|
||||||
pname = "lsmashsource";
|
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 {
|
src = fetchFromGitHub {
|
||||||
owner = "VFR-maniac";
|
owner = "VFR-maniac";
|
||||||
repo = "L-SMASH-Works";
|
repo = "L-SMASH-Works";
|
||||||
rev = "3edd194b1d82975cee67c0278556615c7d9ebd36";
|
rev = "198cc7814c93209e23f1c6a20daffd651945ba2b";
|
||||||
sha256 = "0q5xww6rkfi9vqwafpi9cvvywn1hx5fhkhqz0ck7x235cc3lb2qz";
|
sha256 = "1pb8rrh184pxy5calwfnmm02i0by8vc91c07w4ygj50y8yfqa3br";
|
||||||
};
|
};
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
|
@ -18,4 +18,12 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config which ];
|
nativeBuildInputs = [ pkg-config which ];
|
||||||
buildInputs = [ vapoursynth ffmpeg l-smash ];
|
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;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue