31 lines
918 B
Nix
31 lines
918 B
Nix
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "alsa-utils-1.0.27.2";
|
|
|
|
src = fetchurl {
|
|
# url = "ftp://ftp.alsa-project.org/pub/utils/${name}.tar.bz2";
|
|
url = "http://alsa.cybermirror.org/utils/${name}.tar.bz2";
|
|
sha256 = "1sjjngnq50jv5ilwsb4zys6smifni3bd6fn28gbnhfrg14wsrgq2";
|
|
};
|
|
|
|
buildInputs = [ alsaLib ncurses libsamplerate ];
|
|
nativeBuildInputs = [ gettext ];
|
|
|
|
configureFlags = "--disable-xmlto --with-udev-rules-dir=$(out)/lib/udev/rules.d";
|
|
|
|
installFlags = "ASOUND_STATE_DIR=$(TMPDIR)/dummy";
|
|
|
|
meta = {
|
|
homepage = http://www.alsa-project.org/;
|
|
description = "ALSA, the Advanced Linux Sound Architecture utils";
|
|
|
|
longDescription = ''
|
|
The Advanced Linux Sound Architecture (ALSA) provides audio and
|
|
MIDI functionality to the Linux-based operating system.
|
|
'';
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|