Merge pull request #44412 from dotlambda/ams-lv2-python3
ams-lv2: use python3
This commit is contained in:
commit
373d727793
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, cairo, fftw, gtkmm2, lv2, lvtk, pkgconfig, python }:
|
{ stdenv, fetchFromGitHub, cairo, fftw, gtkmm2, lv2, lvtk, pkgconfig, python3 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ams-lv2-${version}";
|
name = "ams-lv2-${version}";
|
||||||
@ -12,13 +12,13 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
buildInputs = [ cairo fftw gtkmm2 lv2 lvtk python ];
|
buildInputs = [ cairo fftw gtkmm2 lv2 lvtk ];
|
||||||
|
|
||||||
configurePhase = "python waf configure --prefix=$out";
|
configurePhase = "${python3.interpreter} waf configure --prefix=$out";
|
||||||
|
|
||||||
buildPhase = "python waf";
|
buildPhase = "${python3.interpreter} waf";
|
||||||
|
|
||||||
installPhase = "python waf install";
|
installPhase = "${python3.interpreter} waf install";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "An LV2 port of the internal modules found in Alsa Modular Synth";
|
description = "An LV2 port of the internal modules found in Alsa Modular Synth";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user