summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/audio/chuck/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/chuck/default.nix')
-rw-r--r--pkgs/applications/audio/chuck/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/chuck/default.nix b/pkgs/applications/audio/chuck/default.nix
index f30b5dba5b6b..e051d8585b5c 100644
--- a/pkgs/applications/audio/chuck/default.nix
+++ b/pkgs/applications/audio/chuck/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchurl, alsaLib, bison, flex, libsndfile, which
+{ stdenv, lib, fetchurl, alsa-lib, bison, flex, libsndfile, which
, AppKit, Carbon, CoreAudio, CoreMIDI, CoreServices, Kernel
}:
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ flex bison which ];
buildInputs = [ libsndfile ]
- ++ lib.optional (!stdenv.isDarwin) alsaLib
+ ++ lib.optional (!stdenv.isDarwin) alsa-lib
++ lib.optional stdenv.isDarwin [ AppKit Carbon CoreAudio CoreMIDI CoreServices Kernel ];
patches = [ ./darwin-limits.patch ];