kitty: remove unused nativeBuildInputs on macOS

These two dependencies were used to generate the PNG icons that would later be converted to the icon for the macOS app. The PNGs are now stored in git and are not generated during the build anymore.
This commit is contained in:
Luflosi
2020-02-20 11:20:21 +01:00
parent 39dc0977a4
commit 1b74dfcf6d

View File

@@ -12,8 +12,6 @@
libcanberra,
libicns,
libpng,
librsvg,
optipng,
python3,
zlib,
}:
@@ -55,8 +53,6 @@ buildPythonApplication rec {
] ++ stdenv.lib.optionals stdenv.isDarwin [
imagemagick
libicns # For the png2icns tool.
librsvg
optipng
];
propagatedBuildInputs = stdenv.lib.optional stdenv.isLinux libGL;