summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2023-10-18 23:50:15 +0800
committerAlyssa Ross <hi@alyssa.is>2023-10-20 22:03:00 +0000
commit442b2e8c35970521a1a1160b46967e67b4618362 (patch)
tree4b09a25c46449152678604a5559b9863da4b3b45
parentc1ac656934fd404042872a9d00a2dfc69ed222b8 (diff)
downloadnixpkgs-442b2e8c35970521a1a1160b46967e67b4618362.tar
nixpkgs-442b2e8c35970521a1a1160b46967e67b4618362.tar.gz
nixpkgs-442b2e8c35970521a1a1160b46967e67b4618362.tar.bz2
nixpkgs-442b2e8c35970521a1a1160b46967e67b4618362.tar.lz
nixpkgs-442b2e8c35970521a1a1160b46967e67b4618362.tar.xz
nixpkgs-442b2e8c35970521a1a1160b46967e67b4618362.tar.zst
nixpkgs-442b2e8c35970521a1a1160b46967e67b4618362.zip
stone-phaser: 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.

(See also the fix for string-machine, which has the same build issue)
-rw-r--r--pkgs/applications/audio/stone-phaser/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/stone-phaser/default.nix b/pkgs/applications/audio/stone-phaser/default.nix
index b9ca1a1790d..4feaf9cd99a 100644
--- a/pkgs/applications/audio/stone-phaser/default.nix
+++ b/pkgs/applications/audio/stone-phaser/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, xorg, cairo, lv2, libjack2, mesa, pkg-config }:
+{ lib, stdenv, fetchFromGitHub, xorg, cairo, libGL, lv2, libjack2, mesa, pkg-config }:
 
 stdenv.mkDerivation rec {
   pname = "stone-phaser";
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkg-config ];
   buildInputs = [
-    xorg.libX11 cairo lv2 libjack2 mesa
+    xorg.libX11 cairo libGL lv2 libjack2 mesa
   ];
 
   postPatch = ''