jbig2dec: switch to python3

This commit is contained in:
Jan Tojnar 2019-12-14 22:38:07 +01:00
parent 239e4c1f06
commit 628abfebfa
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, python, autoconf }:
{ stdenv, fetchurl, python3, autoconf }:
stdenv.mkDerivation rec {
name = "jbig2dec-0.17";
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
buildInputs = [ autoconf ];
checkInputs = [ python ];
checkInputs = [ python3 ];
doCheck = true;
meta = {