about summary refs log tree commit diff
path: root/pkgs/applications/editors/aseprite
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2020-02-18 06:57:40 +0000
committerOrivej Desh <orivej@gmx.fr>2020-02-18 07:51:50 +0000
commit3ad2c20fe69048e68b49b61717cf911380262320 (patch)
tree8595bc8ba2508e14baedc426f7b3f76a77116700 /pkgs/applications/editors/aseprite
parent4b212b91afca7ba6354a499be765bee339d3a171 (diff)
aseprite-unfree: fix build
It fails with:

src/gpu/gl/glx/GrGLMakeNativeInterface_glx.cpp:15:10: fatal error: GL/glx.h: No such file or directory
   15 | #include <GL/glx.h>
Diffstat (limited to 'pkgs/applications/editors/aseprite')
-rw-r--r--pkgs/applications/editors/aseprite/skia.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/aseprite/skia.nix b/pkgs/applications/editors/aseprite/skia.nix
index 8bf2adf484e23..c89ebd4ad0c15 100644
--- a/pkgs/applications/editors/aseprite/skia.nix
+++ b/pkgs/applications/editors/aseprite/skia.nix
@@ -1,5 +1,5 @@
 { stdenv, lib, fetchFromGitHub, fetchgit, python2, gn, ninja
-, fontconfig, expat, icu58, libjpeg, libpng, libwebp, zlib
+, fontconfig, expat, icu58, libglvnd, libjpeg, libpng, libwebp, zlib
 , mesa, libX11
 }:
 
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
   nativeBuildInputs = [ python2 gn ninja ];
 
   buildInputs = [
-    fontconfig expat icu58 libjpeg libpng libwebp zlib
+    fontconfig expat icu58 libglvnd libjpeg libpng libwebp zlib
     mesa libX11
   ];