summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/audio/aumix/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/aumix/default.nix')
-rw-r--r--pkgs/applications/audio/aumix/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/audio/aumix/default.nix b/pkgs/applications/audio/aumix/default.nix
index ffda8b6734d6..b1808ed90f11 100644
--- a/pkgs/applications/audio/aumix/default.nix
+++ b/pkgs/applications/audio/aumix/default.nix
@@ -1,9 +1,9 @@
{lib, stdenv, fetchurl, gettext, ncurses
, gtkGUI ? false
-, pkgconfig ? null
+, pkg-config ? null
, gtk2 ? null}:
-assert gtkGUI -> pkgconfig != null && gtk2 != null;
+assert gtkGUI -> pkg-config != null && gtk2 != null;
stdenv.mkDerivation rec {
name = "aumix-2.9.1";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [ gettext ncurses ]
- ++ (if gtkGUI then [pkgconfig gtk2] else []);
+ ++ (if gtkGUI then [pkg-config gtk2] else []);
meta = {
description = "Audio mixer for X and the console";