mirror of
https://github.com/tadeokondrak/vs-overlay
synced 2024-11-04 16:22:29 +01:00
30 lines
891 B
Nix
30 lines
891 B
Nix
{ lib, stdenv, fetchFromGitHub, pkg-config, which, vapoursynth, ffmpeg, l-smash }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "lsmashsource";
|
|
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 = "198cc7814c93209e23f1c6a20daffd651945ba2b";
|
|
sha256 = "1pb8rrh184pxy5calwfnmm02i0by8vc91c07w4ygj50y8yfqa3br";
|
|
};
|
|
|
|
preConfigure = ''
|
|
patchShebangs .
|
|
cd VapourSynth
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|