sratom: switch to python3

This commit is contained in:
Jan Tojnar
2019-12-14 19:51:05 +01:00
parent d06be85bdc
commit e942647826

View File

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