mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: lame: Update to 3.100.
* gnu/packages/mp3.scm (lame): Update to 3.100. [source]: Don't hard-code version.
This commit is contained in:
parent
28d0b52164
commit
3d679ab1e5
1 changed files with 5 additions and 3 deletions
|
@ -43,6 +43,7 @@ (define-module (gnu packages mp3)
|
|||
#:use-module (gnu packages video) ;ffmpeg
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system python)
|
||||
#:use-module (guix build-system cmake))
|
||||
|
@ -348,14 +349,15 @@ (define-public mpg321
|
|||
(define-public lame
|
||||
(package
|
||||
(name "lame")
|
||||
(version "3.99.5")
|
||||
(version "3.100")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://sourceforge/lame/lame/3.99/lame-"
|
||||
(uri (string-append "mirror://sourceforge/lame/lame/"
|
||||
(version-major+minor version) "/lame-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1zr3kadv35ii6liia0bpfgxpag27xcivp571ybckpbz4b10nnd14"))))
|
||||
"07nsn5sy3a8xbmw1bidxnsj5fj6kg9ai04icmqw40ybkp353dznx"))))
|
||||
(build-system gnu-build-system)
|
||||
;; XXX FIXME: Use gcc-4.8 on i686 to work around
|
||||
;; <http://bugs.gnu.org/20856>.
|
||||
|
|
Loading…
Reference in a new issue