summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2023-10-18 23:48:24 +0800
committerAlyssa Ross <hi@alyssa.is>2023-10-20 22:03:01 +0000
commit8d5b9fc7c362f8d7f70ee73258a0b463e05e4abd (patch)
treeeee1c48c0e4d9ec838fa077157fcff1a4a49f151
parent442b2e8c35970521a1a1160b46967e67b4618362 (diff)
downloadnixpkgs-8d5b9fc7c362f8d7f70ee73258a0b463e05e4abd.tar
nixpkgs-8d5b9fc7c362f8d7f70ee73258a0b463e05e4abd.tar.gz
nixpkgs-8d5b9fc7c362f8d7f70ee73258a0b463e05e4abd.tar.bz2
nixpkgs-8d5b9fc7c362f8d7f70ee73258a0b463e05e4abd.tar.lz
nixpkgs-8d5b9fc7c362f8d7f70ee73258a0b463e05e4abd.tar.xz
nixpkgs-8d5b9fc7c362f8d7f70ee73258a0b463e05e4abd.tar.zst
nixpkgs-8d5b9fc7c362f8d7f70ee73258a0b463e05e4abd.zip
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.
-rw-r--r--pkgs/applications/audio/string-machine/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/string-machine/default.nix b/pkgs/applications/audio/string-machine/default.nix
index a146ea8cd97..312cf1db5ba 100644
--- a/pkgs/applications/audio/string-machine/default.nix
+++ b/pkgs/applications/audio/string-machine/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, boost, cairo, lv2, pkg-config }:
+{ lib, stdenv, fetchFromGitHub, boost, cairo, libGL, lv2, pkg-config }:
 
 stdenv.mkDerivation rec {
   pname = "string-machine";
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ pkg-config ];
 
   buildInputs = [
-    boost cairo lv2
+    boost cairo libGL lv2
   ];
 
   makeFlags = [