nixpkgs/pkgs/os-specific/linux/alsa-utils/default.nix
Lluís Batlle i Rossell 3b26ba7019 Merge remote-tracking branch 'central/master' into stdenv-updates
Conflicts:
	pkgs/os-specific/linux/alsa-utils/default.nix
2013-01-27 11:32:12 +01:00

36 lines
1,009 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate}:
stdenv.mkDerivation rec {
name = "alsa-utils-1.0.26";
src = fetchurl {
# url = "ftp://ftp.alsa-project.org/pub/utils/${name}.tar.bz2";
url = "http://alsa.cybermirror.org/utils/${name}.tar.bz2";
sha256 = "1rw1n3w8syqky9i7kwy5xd2rzfdbihxas32vwfxpb177lqx2lpzq";
};
buildInputs = [ alsaLib ncurses libsamplerate ];
nativeBuildInputs = [ gettext ];
configureFlags = "--disable-xmlto --with-udev-rules-dir=$(out)/lib/udev/rules.d";
installFlags = "ASOUND_STATE_DIR=$(TMPDIR)/dummy";
preConfigure =
''
# Ensure that 90-alsa-restore.rules.in gets rebuilt.
rm alsactl/90-alsa-restore.rules
'';
meta = {
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.
'';
homepage = http://www.alsa-project.org/;
};
}