2016-02-13 20:04:41 +01:00
|
|
|
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate, pciutils, fftw}:
|
2009-04-21 11:56:02 +02:00
|
|
|
|
2009-10-30 16:05:13 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "alsa-utils";
|
2020-02-23 08:36:49 +01:00
|
|
|
version = "1.2.2";
|
2012-09-24 14:53:19 +02:00
|
|
|
|
2009-04-21 11:56:02 +02:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://alsa/utils/${pname}-${version}.tar.bz2";
|
2020-02-23 08:36:49 +01:00
|
|
|
sha256 = "1wz460by17rmxrcydn583rd4lhj6wlvqs6x1j5pdzxn5g3app024";
|
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"
|
|
|
|
'';
|
2017-12-17 05:06:59 +01:00
|
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
buildInputs = [ alsaLib ncurses libsamplerate fftw ];
|
2012-09-24 14:53:19 +02:00
|
|
|
|
2018-07-25 23:44:21 +02:00
|
|
|
configureFlags = [ "--disable-xmlto" "--with-udev-rules-dir=$(out)/lib/udev/rules.d" ];
|
2009-04-21 11:56:02 +02:00
|
|
|
|
2019-11-05 02:10:31 +01:00
|
|
|
installFlags = [ "ASOUND_STATE_DIR=$(TMPDIR)/dummy" ];
|
2012-04-14 13:46:45 +02:00
|
|
|
|
2018-08-14 13:32:42 +02:00
|
|
|
meta = with stdenv.lib; {
|
2020-02-23 08:36:49 +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.
|
|
|
|
'';
|
|
|
|
|
2018-08-14 13:32:42 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
2009-04-21 11:56:02 +02:00
|
|
|
};
|
|
|
|
}
|