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