ALSA 1.0.19.

svn path=/nixpkgs/trunk/; revision=13808
This commit is contained in:
Ludovic Courtès 2009-01-19 20:21:23 +00:00
parent 8a1fb2e075
commit d17d9dfb39
3 changed files with 32 additions and 2 deletions

View file

@ -0,0 +1,14 @@
args: with args;
rec {
alsaLib = (import ./common.nix) {
aName = "lib";
sha256 = "11i898dc6qbachn046gl6dg6g7bl2k8crddl97f3z5i57bcjdvij";
} args;
alsaUtils = (import ./common.nix) {
aName = "utils";
sha256 = "1bcchd5nwgb2hy0z9c6jxbqlzirkh6wvxv6nldjcwmvqmvsj8j8z";
buildInputs = [alsaLib ncurses gettext];
} args;
}

View file

@ -9,5 +9,14 @@ args: with args; stdenv.mkDerivation rec {
inherit buildInputs propagatedBuildInputs;
meta = { homepage = http://www.alsa-project.org; };
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/;
};
}

View file

@ -5921,9 +5921,16 @@ let
};
alsaLib = alsa.alsaLib;
alsaUtils = alsa.alsaUtils;
# A newer ALSA. Make it the default during the next `stdenv-updates' merge.
alsa_1_0_19 = import ../os-specific/linux/alsa/1.0.19.nix {
inherit fetchurl stdenv ncurses gettext;
version = "1.0.19";
};
alsaLib_1_0_19 = alsa_1_0_19.alsaLib;
alsaUtils_1_0_19 = alsa_1_0_19.alsaUtils;
blcr = builderDefsPackage (selectVersion ../os-specific/linux/blcr "0.6.5"){
inherit perl;
};