afflib: use python3

Python3 is supported since 3.7.14.
This commit is contained in:
Robert Schütz 2018-08-03 17:53:51 +02:00
parent a6c7132abc
commit 8413f1883e

View File

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, zlib, curl, expat, fuse, openssl { stdenv, fetchFromGitHub, zlib, curl, expat, fuse, openssl
, autoreconfHook, python , autoreconfHook, python3
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
}; };
nativeBuildInputs = [ autoreconfHook ]; nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ zlib curl expat fuse openssl python ]; buildInputs = [ zlib curl expat fuse openssl python3 ];
meta = { meta = {
homepage = http://afflib.sourceforge.net/; homepage = http://afflib.sourceforge.net/;