sord: switch to python3

This commit is contained in:
Jan Tojnar 2019-12-14 19:50:49 +01:00
parent 486e3ecafd
commit d06be85bdc
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

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