Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
32 lines
896 B
Nix
32 lines
896 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;
|
|
};
|
|
}
|