2015-12-22 19:51:55 +01:00
|
|
|
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate, pciutils}:
|
2009-04-21 11:56:02 +02:00
|
|
|
|
2009-10-30 16:05:13 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-11 20:10:35 +02:00
|
|
|
name = "alsa-utils-${version}";
|
|
|
|
version = "1.0.29";
|
2012-09-24 14:53:19 +02:00
|
|
|
|
2009-04-21 11:56:02 +02:00
|
|
|
src = fetchurl {
|
2014-06-20 10:11:41 +02:00
|
|
|
urls = [
|
|
|
|
"ftp://ftp.alsa-project.org/pub/utils/${name}.tar.bz2"
|
|
|
|
"http://alsa.cybermirror.org/utils/${name}.tar.bz2"
|
|
|
|
];
|
2015-04-11 20:10:35 +02:00
|
|
|
sha256 = "16ryhgbapp4pxyvsjc258mcj14wk7x3xs6g9bpnkqj0l7s7haq2i";
|
2009-04-21 11:56:02 +02:00
|
|
|
};
|
2012-09-24 14:53:19 +02:00
|
|
|
|
2015-12-22 19:51:55 +01:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace alsa-info/alsa-info.sh \
|
|
|
|
--replace "which" "type -p" \
|
|
|
|
--replace "lspci" "${pciutils}/bin/lspci"
|
|
|
|
'';
|
2015-04-11 20:10:35 +02:00
|
|
|
buildInputs = [ gettext alsaLib ncurses libsamplerate ];
|
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";
|
|
|
|
|
2009-04-21 11:56:02 +02:00
|
|
|
meta = {
|
2013-12-06 19:26:28 +01:00
|
|
|
homepage = http://www.alsa-project.org/;
|
2009-04-21 11:56:02 +02:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2013-12-06 19:26:28 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-04-11 20:10:35 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.AndersonTorres ];
|
2009-04-21 11:56:02 +02:00
|
|
|
};
|
|
|
|
}
|