kitty: Fix pkgconfig dependency (#11465)

pkgconfig is the correct virtual dependency while pkg-config is a
specific implementation.
This commit is contained in:
Michael Kuhn 2019-05-15 12:18:16 +02:00 committed by Massimiliano Culpo
parent 54d56db1f1
commit 58c5442d62

View file

@ -33,7 +33,7 @@ class Kitty(PythonPackage):
depends_on('zlib')
depends_on('libpng')
depends_on('gl', type=('build', 'link', 'run'))
depends_on('pkg-config', type='build')
depends_on('pkgconfig', type='build')
depends_on('py-setuptools', type='build')
depends_on('py-sphinx', type='build')
depends_on('freetype', when=sys.platform != 'darwin')