2016-02-13 19:04:41 +00:00
|
|
|
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate, pciutils, fftw}:
|
2009-04-21 10:56:02 +01:00
|
|
|
|
2009-10-30 15:05:13 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-11 19:10:35 +01:00
|
|
|
name = "alsa-utils-${version}";
|
2018-05-03 05:13:02 +01:00
|
|
|
version = "1.1.6";
|
2012-09-24 13:53:19 +01:00
|
|
|
|
2009-04-21 10:56:02 +01:00
|
|
|
src = fetchurl {
|
2018-06-10 19:56:20 +01:00
|
|
|
url = "mirror://alsa/utils/${name}.tar.bz2";
|
2018-05-03 05:13:02 +01:00
|
|
|
sha256 = "0vnkyymgwj9rfdb11nvab30dnfrylmakdfildxl0y8mj836awp0m";
|
2009-04-21 10:56:02 +01:00
|
|
|
};
|
2012-09-24 13:53:19 +01:00
|
|
|
|
2015-12-22 18:51:55 +00:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace alsa-info/alsa-info.sh \
|
|
|
|
--replace "which" "type -p" \
|
|
|
|
--replace "lspci" "${pciutils}/bin/lspci"
|
|
|
|
'';
|
2017-12-17 04:06:59 +00:00
|
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
buildInputs = [ alsaLib ncurses libsamplerate fftw ];
|
2012-09-24 13:53:19 +01:00
|
|
|
|
2012-04-13 15:54:02 +01:00
|
|
|
configureFlags = "--disable-xmlto --with-udev-rules-dir=$(out)/lib/udev/rules.d";
|
2009-04-21 10:56:02 +01:00
|
|
|
|
2012-04-14 12:46:45 +01:00
|
|
|
installFlags = "ASOUND_STATE_DIR=$(TMPDIR)/dummy";
|
|
|
|
|
2009-04-21 10:56:02 +01:00
|
|
|
meta = {
|
2013-12-06 18:26:28 +00:00
|
|
|
homepage = http://www.alsa-project.org/;
|
2009-04-21 10:56:02 +01: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 18:26:28 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-04-11 19:10:35 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.AndersonTorres ];
|
2009-04-21 10:56:02 +01:00
|
|
|
};
|
|
|
|
}
|