mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate, pciutils, fftw}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "alsa-utils";
|
|
version = "1.2.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://alsa/utils/${pname}-${version}.tar.bz2";
|
|
sha256 = "1wz460by17rmxrcydn583rd4lhj6wlvqs6x1j5pdzxn5g3app024";
|
|
};
|
|
|
|
patchPhase = ''
|
|
substituteInPlace alsa-info/alsa-info.sh \
|
|
--replace "which" "type -p" \
|
|
--replace "lspci" "${pciutils}/bin/lspci"
|
|
'';
|
|
nativeBuildInputs = [ gettext ];
|
|
buildInputs = [ alsaLib ncurses libsamplerate fftw ];
|
|
|
|
configureFlags = [ "--disable-xmlto" "--with-udev-rules-dir=$(out)/lib/udev/rules.d" ];
|
|
|
|
installFlags = [ "ASOUND_STATE_DIR=$(TMPDIR)/dummy" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://www.alsa-project.org/";
|
|
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.
|
|
'';
|
|
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.AndersonTorres ];
|
|
};
|
|
}
|