depot/third_party/nixpkgs/pkgs/by-name/al/alsa-oss/package.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

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;
};
}