2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
33 lines
896 B
Nix
33 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;
|
|
};
|
|
}
|