nixpkgs/pkgs/by-name/al/alsa-oss/package.nix
nicoo 2641d97cbf pkgs/by-name: Convert hashes to SRI format
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
2024-09-15 11:24:31 +02:00

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