remove references to `vapoursynth.dev`

pull/1/head
Tadeo Kondrak 2019-06-25 17:57:16 -06:00
parent e94a197efe
commit 13ebe32810
No known key found for this signature in database
GPG Key ID: C4654C621CD5277C
4 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ in stdenv.mkDerivation rec {
buildInputs = [ vapoursynth ];
buildPhase = ''
c++ -std=c++11 -shared -fPIC -O2 -I${vapoursynth.dev}/include/vapoursynth \
c++ -std=c++11 -shared -fPIC -O2 -I${vapoursynth}/include/vapoursynth \
autocrop.cpp -o libautocrop${ext}
'';

View File

@ -21,7 +21,7 @@ in stdenv.mkDerivation rec {
'';
buildPhase = ''
c++ -fPIC -shared -I${vapoursynth.dev}/include/vapoursynth \
c++ -fPIC -shared -I${vapoursynth}/include/vapoursynth \
-o VapourSynth-BezierCurve${ext} \
VapourSynth-BezierCurve/BezierCurve.cpp \
VapourSynth-BezierCurve/CubicBezierCurve.cpp \

View File

@ -16,7 +16,7 @@ in stdenv.mkDerivation rec {
buildInputs = [ vapoursynth ];
buildPhase = ''
c++ -shared -fPIC -O2 -msse2 -mfpmath=sse -I${vapoursynth.dev}/include/vapoursynth \
c++ -shared -fPIC -O2 -msse2 -mfpmath=sse -I${vapoursynth}/include/vapoursynth \
continuity.cpp -o continuity${ext}
'';

View File

@ -16,7 +16,7 @@ in stdenv.mkDerivation rec {
buildInputs = [ vapoursynth ];
buildPhase = ''
c++ -std=c++11 -shared -fPIC -O2 -I${vapoursynth.dev}/include/vapoursynth \
c++ -std=c++11 -shared -fPIC -O2 -I${vapoursynth}/include/vapoursynth \
descale.cpp -o libdescale${ext}
'';