lv2: switch to python3

This commit is contained in:
Jan Tojnar 2019-12-14 19:51:20 +01:00
parent e942647826
commit 6b5e932792
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, gtk2, libsndfile, pkgconfig, python, wafHook }:
{ stdenv, fetchurl, gtk2, libsndfile, pkgconfig, python3, wafHook }:
stdenv.mkDerivation rec {
pname = "lv2";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig wafHook ];
buildInputs = [ gtk2 libsndfile python ];
buildInputs = [ gtk2 libsndfile python3 ];
meta = with stdenv.lib; {
homepage = http://lv2plug.in;