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:
parent
cfd86f9647
commit
1f5f9e7479
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user