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
34 lines
833 B
Nix
34 lines
833 B
Nix
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "alsa-oss-1.1.6";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://alsa/oss-lib/${name}.tar.bz2";
|
|
sha256 = "1sj512wyci5qv8cisps96xngh7y9r5mv18ybqnazy18zwr1zgly3";
|
|
};
|
|
|
|
buildInputs = [ alsaLib ncurses libsamplerate ];
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
configureFlags = "--disable-xmlto";
|
|
|
|
installFlags = "ASOUND_STATE_DIR=$(TMPDIR)/dummy";
|
|
|
|
preConfigure =
|
|
''
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.alsa-project.org/;
|
|
description = "ALSA, the Advanced Linux Sound Architecture alsa-oss emulation";
|
|
|
|
longDescription = ''
|
|
The Advanced Linux Sound Architecture (ALSA) provides audio and
|
|
MIDI functionality to the Linux-based operating system.
|
|
'';
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|