2013-01-25 09:18:30 +01:00
|
|
|
|
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate}:
|
2009-04-21 11:56:02 +02:00
|
|
|
|
|
2009-10-30 16:05:13 +01:00
|
|
|
|
stdenv.mkDerivation rec {
|
2012-09-24 14:53:19 +02:00
|
|
|
|
name = "alsa-utils-1.0.26";
|
|
|
|
|
|
2009-04-21 11:56:02 +02:00
|
|
|
|
src = fetchurl {
|
2012-09-24 14:53:19 +02:00
|
|
|
|
# url = "ftp://ftp.alsa-project.org/pub/utils/${name}.tar.bz2";
|
2012-09-24 15:53:57 +02:00
|
|
|
|
url = "http://alsa.cybermirror.org/utils/${name}.tar.bz2";
|
2012-09-24 14:53:19 +02:00
|
|
|
|
sha256 = "1rw1n3w8syqky9i7kwy5xd2rzfdbihxas32vwfxpb177lqx2lpzq";
|
2009-04-21 11:56:02 +02:00
|
|
|
|
};
|
2012-09-24 14:53:19 +02:00
|
|
|
|
|
2013-01-25 09:18:30 +01:00
|
|
|
|
buildInputs = [ alsaLib ncurses libsamplerate ];
|
2010-08-21 18:55:47 +02:00
|
|
|
|
buildNativeInputs = [ gettext ];
|
2012-09-24 14:53:19 +02:00
|
|
|
|
|
2012-04-13 16:54:02 +02:00
|
|
|
|
configureFlags = "--disable-xmlto --with-udev-rules-dir=$(out)/lib/udev/rules.d";
|
2009-04-21 11:56:02 +02:00
|
|
|
|
|
2012-04-14 13:46:45 +02:00
|
|
|
|
installFlags = "ASOUND_STATE_DIR=$(TMPDIR)/dummy";
|
|
|
|
|
|
2012-10-02 17:09:28 +02:00
|
|
|
|
preConfigure =
|
|
|
|
|
''
|
|
|
|
|
# Ensure that ‘90-alsa-restore.rules.in’ gets rebuilt.
|
|
|
|
|
rm alsactl/90-alsa-restore.rules
|
|
|
|
|
'';
|
|
|
|
|
|
2009-04-21 11:56:02 +02:00
|
|
|
|
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/;
|
|
|
|
|
};
|
|
|
|
|
}
|