serd: switch to python3

This commit is contained in:
Jan Tojnar
2019-12-14 19:50:41 +01:00
parent c8490a8603
commit 486e3ecafd

View File

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