aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2025-02-12 21:06:30 -0800
committerMark Nipper <nipsy@bitgnome.net>2025-02-12 21:06:30 -0800
commitdf7296d6c1c15f485e6d7832d633e8ee781965fa (patch)
tree738d5d7e01eb143c6dfcb456edd0742b63655aa2
parentee6109a99d9e709cf06066b75b9a382709504073 (diff)
downloadnix-df7296d6c1c15f485e6d7832d633e8ee781965fa.tar
nix-df7296d6c1c15f485e6d7832d633e8ee781965fa.tar.gz
nix-df7296d6c1c15f485e6d7832d633e8ee781965fa.tar.bz2
nix-df7296d6c1c15f485e6d7832d633e8ee781965fa.tar.lz
nix-df7296d6c1c15f485e6d7832d633e8ee781965fa.tar.xz
nix-df7296d6c1c15f485e6d7832d633e8ee781965fa.tar.zst
nix-df7296d6c1c15f485e6d7832d633e8ee781965fa.zip
Revise gearmulator libraries
-rw-r--r--pkgs/gearmulator/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/gearmulator/default.nix b/pkgs/gearmulator/default.nix
index 36c2390..8187c8a 100644
--- a/pkgs/gearmulator/default.nix
+++ b/pkgs/gearmulator/default.nix
@@ -2,12 +2,12 @@
alsa-lib,
cmake,
fetchFromGitHub,
- fontconfig,
freeglut,
freetype,
lib,
libjack2,
libX11,
+ libXcomposite,
libXcursor,
libXext,
libXinerama,
@@ -37,11 +37,11 @@ stdenv.mkDerivation rec {
buildInputs = [
alsa-lib
- fontconfig
freeglut
freetype
libjack2
libX11
+ libXcomposite
libXcursor
libXext
libXinerama
@@ -54,6 +54,7 @@ stdenv.mkDerivation rec {
toString [
"-ljack"
"-lX11"
+ "-lXcomposite"
"-lXcursor"
"-lXext"
"-lXinerama"
@@ -77,6 +78,6 @@ stdenv.mkDerivation rec {
description = "Emulation of Motorola 56300 family DSP synths";
homepage = "https://github.com/dsp56300/gearmulator";
license = lib.licenses.gpl3;
- platforms = lib.platforms.all;
+ platforms = [ "x86_64-linux" ];
};
}