1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 09:02:46 +00:00

serd: switch to python3

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

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;