diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-12-23 04:38:28 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-12-25 01:47:22 +0200 |
commit | 457d154fdf80401a1c0a9f0edadd380ca0a8a9f8 (patch) | |
tree | 92ba86c4b6d82e02655c5dd0139bc1efed19e9f3 /gnu/packages/linux.scm | |
parent | 7604106f2c6d00d6c68d2c2f1af062967fa89a97 (diff) |
gnu: alsa-utils: Update to 1.1.3.
* gnu/packages/linux.scm (alsa-utils): Update to 1.1.3.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index fa16ed6071..9d36dfc8c2 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -856,14 +856,14 @@ MIDI functionality to the Linux-based operating system.") (define-public alsa-utils (package (name "alsa-utils") - (version "1.1.2") + (version "1.1.3") (source (origin (method url-fetch) (uri (string-append "ftp://ftp.alsa-project.org/pub/utils/" name "-" version ".tar.bz2")) (sha256 (base32 - "0wcha78c2sm8qqk5r3w83cvm8fp6fb1zpd35kmcm24kxhz007xks")))) + "0z0nnqp1707bm02dys2d16m88lsg5nd26bqaf14rl3za9sjifwhj")))) (build-system gnu-build-system) (arguments ;; XXX: Disable man page creation until we have DocBook. @@ -882,7 +882,8 @@ MIDI functionality to the Linux-based operating system.") ;; Don't try to mkdir /var/lib/alsa. (substitute* "Makefile" (("\\$\\(MKDIR_P\\) .*ASOUND_STATE_DIR.*") - "true\n"))))))) + "true\n")) + #t))))) (inputs `(("libsamplerate" ,libsamplerate) ("ncurses" ,ncurses) |