about summary refs log tree commit diff
path: root/pkgs/applications/graphics/goxel
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2024-03-11 22:09:38 +0100
committerFrancesco Gazzetta <fgaz@fgaz.me>2024-03-12 09:16:49 +0100
commit1f5f9e74798c8b1743cd464e45f6746ed2a6fa7c (patch)
tree27e6398d2c554695e29ee66e9de384414b7b2400 /pkgs/applications/graphics/goxel
parentcfd86f964797d68a9f7ff99109b5ef841bdbd94a (diff)
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
Diffstat (limited to 'pkgs/applications/graphics/goxel')
-rw-r--r--pkgs/applications/graphics/goxel/default.nix4
1 files changed, 2 insertions, 2 deletions
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