3f78f4c64e
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/alsa-oss/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.1.6 with grep in /nix/store/x4l70759q1c4gjq4h8prws3swww92z81-alsa-oss-1.1.6 - directory tree listing: https://gist.github.com/f16ebb93572b01d112dfe2b8d92d4b65
37 lines
925 B
Nix
37 lines
925 B
Nix
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "alsa-oss-1.1.6";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"ftp://ftp.alsa-project.org/pub/oss-lib/${name}.tar.bz2"
|
|
"http://alsa.cybermirror.org/oss-lib/${name}.tar.bz2"
|
|
];
|
|
sha256 = "1sj512wyci5qv8cisps96xngh7y9r5mv18ybqnazy18zwr1zgly3";
|
|
};
|
|
|
|
buildInputs = [ alsaLib ncurses libsamplerate ];
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
configureFlags = "--disable-xmlto";
|
|
|
|
installFlags = "ASOUND_STATE_DIR=$(TMPDIR)/dummy";
|
|
|
|
preConfigure =
|
|
''
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.alsa-project.org/;
|
|
description = "ALSA, the Advanced Linux Sound Architecture alsa-oss emulation";
|
|
|
|
longDescription = ''
|
|
The Advanced Linux Sound Architecture (ALSA) provides audio and
|
|
MIDI functionality to the Linux-based operating system.
|
|
'';
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|