a4042c373b
I somehow forgot to update these other parts.
37 lines
926 B
Nix
37 lines
926 B
Nix
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "alsa-oss-1.0.28";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"ftp://ftp.alsa-project.org/pub/oss-lib/${name}.tar.bz2"
|
|
"http://alsa.cybermirror.org/oss-lib/${name}.tar.bz2"
|
|
];
|
|
sha256 = "1mbabiywxjjlvdh257j3a0v4vvy69mwwnvc3xlq7pg50i2m2rris";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|