alsa : 1.0.9 -> 1.1.0

- Bump versions for the following packages within alsa
- alsa-utils
- alsa-tools
- alsa-plugins
- alsa-lib
Please see http://www.alsa-project.org/main/index.php/Changes_v1.0.29_v1.1.0
for the full changelog this update brings.
This commit is contained in:
Tony White
2016-02-13 19:04:41 +00:00
parent f72382d253
commit 6e56e09c37
4 changed files with 10 additions and 10 deletions
@@ -1,15 +1,15 @@
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate, pciutils}:
{stdenv, fetchurl, alsaLib, gettext, ncurses, libsamplerate, pciutils, fftw}:
stdenv.mkDerivation rec {
name = "alsa-utils-${version}";
version = "1.0.29";
version = "1.1.0";
src = fetchurl {
urls = [
"ftp://ftp.alsa-project.org/pub/utils/${name}.tar.bz2"
"http://alsa.cybermirror.org/utils/${name}.tar.bz2"
];
sha256 = "16ryhgbapp4pxyvsjc258mcj14wk7x3xs6g9bpnkqj0l7s7haq2i";
sha256 = "3b1c3135b76e14532d3dd23fb15759ddd7daf9ffbc183f7a9a0a3a86374748f1";
};
patchPhase = ''
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
--replace "which" "type -p" \
--replace "lspci" "${pciutils}/bin/lspci"
'';
buildInputs = [ gettext alsaLib ncurses libsamplerate ];
buildInputs = [ gettext alsaLib ncurses libsamplerate fftw ];
configureFlags = "--disable-xmlto --with-udev-rules-dir=$(out)/lib/udev/rules.d";