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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "alsa-utils";
|
2019-11-25 09:13:23 +00:00
|
|
|
version = "1.2.1";
|
2012-09-24 13:53:19 +01:00
|
|
|
|
2009-04-21 10:56:02 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://alsa/utils/${pname}-${version}.tar.bz2";
|
2019-11-25 09:13:23 +00:00
|
|
|
sha256 = "039c19b7091is0czl9jlrfczp7pp1jpdri0vvc4k07gl3skhn48b";
|
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
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [ "--disable-xmlto" "--with-udev-rules-dir=$(out)/lib/udev/rules.d" ];
|
2009-04-21 10:56:02 +01:00
|
|
|
|
2019-11-05 01:10:31 +00:00
|
|
|
installFlags = [ "ASOUND_STATE_DIR=$(TMPDIR)/dummy" ];
|
2012-04-14 12:46:45 +01:00
|
|
|
|
2018-08-14 12:32:42 +01:00
|
|
|
meta = with stdenv.lib; {
|
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.
|
|
|
|
'';
|
|
|
|
|
2018-08-14 12:32:42 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.AndersonTorres ];
|
2009-04-21 10:56:02 +01:00
|
|
|
};
|
|
|
|
}
|