kitty: Fix pkgconfig dependency (#11465)
pkgconfig is the correct virtual dependency while pkg-config is a specific implementation.
This commit is contained in:
parent
54d56db1f1
commit
58c5442d62
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ class Kitty(PythonPackage):
|
||||||
depends_on('zlib')
|
depends_on('zlib')
|
||||||
depends_on('libpng')
|
depends_on('libpng')
|
||||||
depends_on('gl', type=('build', 'link', 'run'))
|
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-setuptools', type='build')
|
||||||
depends_on('py-sphinx', type='build')
|
depends_on('py-sphinx', type='build')
|
||||||
depends_on('freetype', when=sys.platform != 'darwin')
|
depends_on('freetype', when=sys.platform != 'darwin')
|
||||||
|
|
Loading…
Reference in a new issue