goxel: use libpng instead of libpng12

`goxel` supports newer version of `libpng`, they test against
it in their CI pipeline:
https://github.com/guillaumechereau/goxel/blob/v0.14.0/.github/workflows/ci.yml#L46
This commit is contained in:
Thomas Gerbet 2024-03-11 22:09:38 +01:00 committed by Francesco Gazzetta
parent cfd86f9647
commit 1f5f9e7479

View File

@ -1,5 +1,5 @@
{ lib, stdenv, fetchFromGitHub, scons, pkg-config, wrapGAppsHook
, glfw3, gtk3, libpng12 }:
, glfw3, gtk3, libpng }:
stdenv.mkDerivation (finalAttrs: {
pname = "goxel";
@ -13,7 +13,7 @@ stdenv.mkDerivation (finalAttrs: {
};
nativeBuildInputs = [ scons pkg-config wrapGAppsHook ];
buildInputs = [ glfw3 gtk3 libpng12 ];
buildInputs = [ glfw3 gtk3 libpng ];
buildPhase = ''
make release