3
0
Fork 0
forked from mirrors/nixpkgs

Add Pavucontrol (untested).

svn path=/nixpkgs/branches/stdenv-updates/; revision=14864
This commit is contained in:
Ludovic Courtès 2009-04-03 15:58:18 +00:00
parent 655a16fa9c
commit 061fd96ad2
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ fetchurl, stdenv, pkgconfig, pulseaudio, gtkmm, libsigcxx
, libglademm, libcanberra, gettext }:
stdenv.mkDerivation rec {
name = "pavucontrol-0.9.7";
src = fetchurl {
url = "http://0pointer.de/lennart/projects/pavucontrol/${name}.tar.gz";
sha256 = "1a1v06hbl1j78ryqy5aiccg6w5hf1yzday2b9h31kx7vr42ir1w0";
};
buildInputs = [ pkgconfig pulseaudio gtkmm libsigcxx libglademm libcanberra gettext ];
meta = {
description = "PulseAudio Volume Control";
longDescription = ''
PulseAudio Volume Control (pavucontrol) provides a GTK+
graphical user interface to connect to a PulseAudio server and
easily control the volume of all clients, sinks, etc.
'';
homepage = http://0pointer.de/lennart/projects/pavucontrol/;
license = "GPLv2+";
};
}

View file

@ -8489,6 +8489,13 @@ let
spellChecking = false;
};
pavucontrol = import ../applications/audio/pavucontrol {
inherit fetchurl stdenv pkgconfig pulseaudio libsigcxx
libcanberra gettext;
inherit (gtkLibs) gtkmm;
inherit (gnome) libglademm;
};
paraview = import ../applications/graphics/paraview {
inherit fetchurl stdenv cmake qt4;
};