diff options
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/gearmulator/default.nix | 7 |
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" ]; }; } |