nixpkgs/pkgs/os-specific/linux/alsa/common.nix
Eelco Dolstra 090e1f1180 * alsa-util suddenly needs --disable-xmlto. Don't know why. Also got
rid of some old versions.

svn path=/nixpkgs/branches/stdenv-updates/; revision=14062
2009-02-12 22:31:23 +00:00

28 lines
671 B
Nix

{ stdenv, fetchurl, pkgName, sha256, version
, buildInputs ? [], propagatedBuildInputs ? []
}:
stdenv.mkDerivation rec {
name = "alsa-${pkgName}-${version}";
src = fetchurl {
url = "ftp://ftp.alsa-project.org/pub/${pkgName}/${name}.tar.bz2";
inherit sha256;
};
inherit buildInputs propagatedBuildInputs;
configureFlags = "--disable-xmlto";
meta = {
description = "ALSA, the Advanced Linux Sound Architecture (${pkgName})";
longDescription = ''
The Advanced Linux Sound Architecture (ALSA) provides audio and
MIDI functionality to the Linux-based operating system.
'';
homepage = http://www.alsa-project.org/;
};
}