zam-plugins: fix build
Did not find <GL/gl.h> with libGLU_combined for some reason, libGL works and seems to be sufficient.
This commit is contained in:
parent
9cbc6984d4
commit
11ff53e7cb
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchgit , boost, libX11, libGLU_combined, liblo, libjack2, ladspaH, lv2, pkgconfig, rubberband, libsndfile, fftwFloat, libsamplerate }:
|
{ stdenv, fetchgit , boost, libX11, libGL, liblo, libjack2, ladspaH, lv2, pkgconfig, rubberband, libsndfile, fftwFloat, libsamplerate }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "zam-plugins";
|
pname = "zam-plugins";
|
||||||
@ -12,16 +12,18 @@ stdenv.mkDerivation {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ boost libX11 libGLU_combined liblo libjack2 ladspaH lv2 rubberband libsndfile fftwFloat libsamplerate ];
|
buildInputs = [ boost libX11 libGL liblo libjack2 ladspaH lv2 rubberband libsndfile fftwFloat libsamplerate ];
|
||||||
|
|
||||||
patchPhase = ''
|
postPatch = ''
|
||||||
patchShebangs ./dpf/utils/generate-ttl.sh
|
patchShebangs ./dpf/utils/generate-ttl.sh
|
||||||
'';
|
'';
|
||||||
|
|
||||||
makeFlags = [
|
makeFlags = [
|
||||||
"PREFIX=$(out)"
|
"PREFIX=${placeholder ''out''}"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.zamaudio.com/?p=976;
|
homepage = http://www.zamaudio.com/?p=976;
|
||||||
description = "A collection of LV2/LADSPA/VST/JACK audio plugins by ZamAudio";
|
description = "A collection of LV2/LADSPA/VST/JACK audio plugins by ZamAudio";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user