about summary refs log tree commit diff
path: root/pkgs/applications/audio/sndpeek
diff options
context:
space:
mode:
authorEmily <vcs@emily.moe>2024-06-20 05:39:23 +0100
committerEmily <vcs@emily.moe>2024-06-22 18:06:51 +0100
commitfbda1dbfd648632226b2953dd87f15955d659f4f (patch)
tree5795022a73b18a7b6dfe0b6aac7f8b6177e35b48 /pkgs/applications/audio/sndpeek
parentc884bc326059d8a018549decb0079296b6972eeb (diff)
treewide: replace freeglut with libglut
Allow the macOS GLUT framework to be used automatically in many
cases. Packages that specifically search for freeglut or require its
additional APIs should still explicitly depend on it.

Deliberately skip the Haskell package set, which is mostly
automatically generated, and mupdf, which has its own fork of freeglut.
Diffstat (limited to 'pkgs/applications/audio/sndpeek')
-rw-r--r--pkgs/applications/audio/sndpeek/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/sndpeek/default.nix b/pkgs/applications/audio/sndpeek/default.nix
index c65208343aff7..7cf8636ad1074 100644
--- a/pkgs/applications/audio/sndpeek/default.nix
+++ b/pkgs/applications/audio/sndpeek/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, libsndfile, freeglut, alsa-lib, mesa, libGLU, libX11, libXmu
+{ lib, stdenv, fetchurl, libsndfile, libglut, alsa-lib, mesa, libGLU, libX11, libXmu
 , libXext, libXi }:
 
 stdenv.mkDerivation rec {
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
   patches = [ ./pthread.patch ];
 
   buildInputs = [
-    freeglut
+    libglut
     alsa-lib
     mesa
     libGLU