Merge pull request #169595 from armeenm/fix-ptex

ptex: remove python2 as dependency
This commit is contained in:
Bobby Rong 2022-05-02 18:25:07 +08:00 committed by GitHub
commit 89ae731298
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, zlib, python2, cmake, pkg-config }:
{ lib, stdenv, fetchFromGitHub, zlib, cmake, pkg-config }:
stdenv.mkDerivation rec
{
@ -15,7 +15,7 @@ stdenv.mkDerivation rec
outputs = [ "bin" "dev" "out" "lib" ];
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib python2 pkg-config ];
buildInputs = [ zlib pkg-config ];
# Can be removed in the next release
# https://github.com/wdas/ptex/pull/42