jbig2dec: switch to python3

This commit is contained in:
Jan Tojnar
2019-12-14 22:38:07 +01:00
parent 239e4c1f06
commit 628abfebfa

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 = {