lilv: switch to python3

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

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, lv2, pkgconfig, python, serd, sord, sratom, wafHook }: { stdenv, fetchurl, lv2, pkgconfig, python3, serd, sord, sratom, wafHook }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "lilv"; pname = "lilv";
@ -9,8 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "0f24cd7wkk5l969857g2ydz2kjjrkvvddg1g87xzzs78lsvq8fy3"; sha256 = "0f24cd7wkk5l969857g2ydz2kjjrkvvddg1g87xzzs78lsvq8fy3";
}; };
nativeBuildInputs = [ pkgconfig wafHook ]; nativeBuildInputs = [ pkgconfig python3 wafHook ];
buildInputs = [ lv2 python serd sord sratom ]; buildInputs = [ lv2 serd sord sratom ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://drobilla.net/software/lilv; homepage = http://drobilla.net/software/lilv;