From 1f5f9e74798c8b1743cd464e45f6746ed2a6fa7c Mon Sep 17 00:00:00 2001 From: Thomas Gerbet Date: Mon, 11 Mar 2024 22:09:38 +0100 Subject: 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 --- pkgs/applications/graphics/goxel/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/applications') diff --git a/pkgs/applications/graphics/goxel/default.nix b/pkgs/applications/graphics/goxel/default.nix index 0b10cda884c7c..5f04312965a0b 100644 --- a/pkgs/applications/graphics/goxel/default.nix +++ b/pkgs/applications/graphics/goxel/default.nix @@ -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 -- cgit 1.4.1