string-machine: Add missing libGL

Cairo will soon no longer propagate libGL. The DPF submodule needs this:

src/pugl/pugl.h:39:14: fatal error: GL/gl.h: No such file or directory
   39 | #    include <GL/gl.h>
      |              ^~~~~~~~~
compilation terminated.
This commit is contained in:
Bobby Rong 2023-10-18 23:48:24 +08:00 committed by Alyssa Ross
parent 442b2e8c35
commit 8d5b9fc7c3
No known key found for this signature in database
GPG Key ID: F9DBED4859B271C0

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, boost, cairo, lv2, pkg-config }: { lib, stdenv, fetchFromGitHub, boost, cairo, libGL, lv2, pkg-config }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "string-machine"; pname = "string-machine";
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
buildInputs = [ buildInputs = [
boost cairo lv2 boost cairo libGL lv2
]; ];
makeFlags = [ makeFlags = [