2009-04-21 11:56:02 +02:00
|
|
|
{stdenv, fetchurl, alsaLib, gettext, ncurses}:
|
|
|
|
|
2009-10-30 16:05:13 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-05-27 21:33:52 +02:00
|
|
|
name = "alsa-utils-1.0.23";
|
2009-10-30 16:05:13 +01:00
|
|
|
|
2009-04-21 11:56:02 +02:00
|
|
|
src = fetchurl {
|
2009-10-30 16:05:13 +01:00
|
|
|
url = "ftp://ftp.alsa-project.org/pub/utils/${name}.tar.bz2";
|
2010-05-27 21:33:52 +02:00
|
|
|
sha256 = "1c7pl5k3d60wacnha8zfn2dixz7hiiaxvijis4559y15bs8mxl5p";
|
2009-04-21 11:56:02 +02:00
|
|
|
};
|
2009-10-30 16:05:13 +01:00
|
|
|
|
2010-08-21 18:55:47 +02:00
|
|
|
buildInputs = [ alsaLib ncurses ];
|
|
|
|
buildNativeInputs = [ gettext ];
|
2009-10-30 16:05:13 +01:00
|
|
|
|
2009-04-21 11:56:02 +02:00
|
|
|
configureFlags = "--disable-xmlto";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "ALSA, the Advanced Linux Sound Architecture utils";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The Advanced Linux Sound Architecture (ALSA) provides audio and
|
|
|
|
MIDI functionality to the Linux-based operating system.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.alsa-project.org/;
|
|
|
|
};
|
|
|
|
}
|