summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2008-02-11 21:45:52 +0000
committerLudovic Courtès <ludo@gnu.org>2008-02-11 21:45:52 +0000
commit06ea94a4712b7c13a6f440982bb580a77e2d2f0f (patch)
tree161854038ab7f2eb679a2c34b092cff31e649b56 /pkgs/applications/audio
parenta30e268cb7e87e98e836d8402c8ce924051a1da2 (diff)
Add Aumix, an audio mixer.
svn path=/nixpkgs/trunk/; revision=10627
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/aumix/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/audio/aumix/default.nix b/pkgs/applications/audio/aumix/default.nix
new file mode 100644
index 000000000000..57c690fee9bc
--- /dev/null
+++ b/pkgs/applications/audio/aumix/default.nix
@@ -0,0 +1,24 @@
+{stdenv, fetchurl, gettext, ncurses
+, gtkGUI ? false
+, pkgconfig ? null
+, gtk ? null}:
+
+assert gtkGUI -> pkgconfig != null && gtk != null;
+
+stdenv.mkDerivation {
+ name = "aumix-2.8";
+ src = fetchurl {
+ url = http://www.jpj.net/~trevor/aumix/aumix-2.8.tar.bz2;
+ sha256 = "636eef7f400c2f3df489c0d2fa21507e88692113561e75a40a26c52bc422d7fc";
+ };
+
+ buildInputs = [ gettext ncurses ]
+ ++ (if gtkGUI then [pkgconfig gtk] else []);
+
+ meta = {
+ description = ''Aumix adjusts an audio mixer from X, the console,
+ a terminal, the command line or a script.'';
+ homepage = http://www.jpj.net/~trevor/aumix.html;
+ license = "GPL";
+ };
+}