forked from mirrors/nixpkgs
guitarix: remove webkit, add compile flags
as recomended by the author: https://sourceforge.net/p/guitarix/mailman/message/33688855/
This commit is contained in:
parent
6b53e5040f
commit
00ffbf060c
|
@ -1,8 +1,8 @@
|
||||||
{ stdenv, fetchurl, gettext, intltool, pkgconfig, python2
|
{ stdenv, fetchurl, gettext, intltool, pkgconfig, python2
|
||||||
, avahi, bluez, boost, eigen, fftw, glib, glib_networking
|
, avahi, bluez, boost, eigen, fftw, glib, glib_networking
|
||||||
, glibmm, gsettings_desktop_schemas, gtkmm2, libjack2
|
, glibmm, gsettings_desktop_schemas, gtkmm2, libjack2
|
||||||
, ladspaH, librdf, libsndfile, lilv, lv2, serd, sord, sratom
|
, ladspaH, libav, librdf, libsndfile, lilv, lv2, serd, sord, sratom
|
||||||
, webkitgtk2, wrapGAppsHook, zita-convolver, zita-resampler
|
, wrapGAppsHook, zita-convolver, zita-resampler
|
||||||
, optimizationSupport ? false # Enable support for native CPU extensions
|
, optimizationSupport ? false # Enable support for native CPU extensions
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
avahi bluez boost eigen fftw glib glibmm glib_networking.out
|
avahi bluez boost eigen fftw glib glibmm glib_networking.out
|
||||||
gsettings_desktop_schemas gtkmm2 libjack2 ladspaH librdf
|
gsettings_desktop_schemas gtkmm2 libjack2 ladspaH libav librdf
|
||||||
libsndfile lilv lv2 serd sord sratom webkitgtk2 zita-convolver
|
libsndfile lilv lv2 serd sord sratom zita-convolver
|
||||||
zita-resampler
|
zita-resampler
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -33,6 +33,9 @@ stdenv.mkDerivation rec {
|
||||||
"--no-desktop-update"
|
"--no-desktop-update"
|
||||||
"--enable-nls"
|
"--enable-nls"
|
||||||
"--no-faust" # todo: find out why --faust doesn't work
|
"--no-faust" # todo: find out why --faust doesn't work
|
||||||
|
"--install-roboto-font"
|
||||||
|
"--includeresampler"
|
||||||
|
"--convolver-ffmpeg"
|
||||||
] ++ optional optimizationSupport "--optimization";
|
] ++ optional optimizationSupport "--optimization";
|
||||||
|
|
||||||
configurePhase = ''python2 waf configure --prefix=$out $configureFlags'';
|
configurePhase = ''python2 waf configure --prefix=$out $configureFlags'';
|
||||||
|
|
Loading…
Reference in a new issue