mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
d81ab0ab7d
This commit adds a list of supported mirrors for all alsa projects, as described on the download section of the alsa-project hompage: http://alsa-project.org/main/index.php/Download
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate, pciutils, fftw}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "alsa-utils-${version}";
|
|
version = "1.1.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://alsa/utils/${name}.tar.bz2";
|
|
sha256 = "0vnkyymgwj9rfdb11nvab30dnfrylmakdfildxl0y8mj836awp0m";
|
|
};
|
|
|
|
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 = {
|
|
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.
|
|
'';
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.AndersonTorres ];
|
|
};
|
|
}
|