2013-01-28 01:48:57 +00:00
|
|
|
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-04-11 09:32:47 +00:00
|
|
|
name = "alsa-oss-1.1.6";
|
2013-01-28 01:48:57 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-10 18:56:20 +00:00
|
|
|
url = "mirror://alsa/oss-lib/${name}.tar.bz2";
|
2018-04-11 09:32:47 +00:00
|
|
|
sha256 = "1sj512wyci5qv8cisps96xngh7y9r5mv18ybqnazy18zwr1zgly3";
|
2013-01-28 01:48:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ alsaLib ncurses libsamplerate ];
|
2013-02-15 12:38:07 +00:00
|
|
|
nativeBuildInputs = [ gettext ];
|
2013-01-28 01:48:57 +00:00
|
|
|
|
2018-07-25 21:44:21 +00:00
|
|
|
configureFlags = [ "--disable-xmlto" ];
|
2013-01-28 01:48:57 +00:00
|
|
|
|
|
|
|
installFlags = "ASOUND_STATE_DIR=$(TMPDIR)/dummy";
|
|
|
|
|
2018-08-14 11:28:51 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-12-06 18:26:28 +00:00
|
|
|
homepage = http://www.alsa-project.org/;
|
2013-01-28 01:48:57 +00:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2018-08-14 11:28:51 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2013-01-28 01:48:57 +00:00
|
|
|
};
|
|
|
|
}
|