44 lines
927 B
Nix
44 lines
927 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
alsa-lib,
|
|
gettext,
|
|
ncurses,
|
|
libsamplerate,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "alsa-oss";
|
|
version = "1.1.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://alsa/oss-lib/alsa-oss-${version}.tar.bz2";
|
|
hash = "sha256-ZK3O9ZJ+hI0uAk5kxL+FtvOVlk2ZdOxhkFrky4011o4=";
|
|
};
|
|
|
|
buildInputs = [
|
|
alsa-lib
|
|
ncurses
|
|
libsamplerate
|
|
];
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
configureFlags = [ "--disable-xmlto" ];
|
|
|
|
installFlags = [ "ASOUND_STATE_DIR=$(TMPDIR)/dummy" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://www.alsa-project.org/";
|
|
description = "ALSA, the Advanced Linux Sound Architecture alsa-oss emulation";
|
|
mainProgram = "aoss";
|
|
|
|
longDescription = ''
|
|
The Advanced Linux Sound Architecture (ALSA) provides audio and
|
|
MIDI functionality to the Linux-based operating system.
|
|
'';
|
|
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|