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