2008-02-22 04:06:12 +01:00
|
|
|
{aName, sha256, buildInputs ? [], propagatedBuildInputs ? [] } :
|
|
|
|
args: with args; stdenv.mkDerivation rec {
|
|
|
|
name = "alsa-" + aName + "-" + version;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.alsa-project.org/pub/" + aName + "/" + name + ".tar.bz2";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
inherit buildInputs propagatedBuildInputs;
|
|
|
|
|
2009-01-19 21:21:23 +01:00
|
|
|
meta = {
|
|
|
|
description = "ALSA, the Advanced Linux Sound Architecture (${aName})";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The Advanced Linux Sound Architecture (ALSA) provides audio and
|
|
|
|
MIDI functionality to the Linux-based operating system.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.alsa-project.org/;
|
|
|
|
};
|
2008-02-22 04:06:12 +01:00
|
|
|
}
|