gnu: mitlm: Update to 0.4.2.
* gnu/packages/speech.scm (mitlm): Update to 0.4.2. [source]: Use new upstream release URI.
This commit is contained in:
parent
c3812c43f4
commit
075972d1fc
|
@ -2,6 +2,7 @@
|
||||||
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
||||||
;;; Copyright © 2016 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2016 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
|
||||||
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -36,18 +37,15 @@
|
||||||
(define-public mitlm
|
(define-public mitlm
|
||||||
(package
|
(package
|
||||||
(name "mitlm")
|
(name "mitlm")
|
||||||
(version "0.4.1")
|
(version "0.4.2")
|
||||||
;; No official release tarballs, so for now we use the one from Debian
|
|
||||||
;; that is maintained by one of the project developers.
|
|
||||||
;;
|
|
||||||
;; See: https://github.com/mitlm/mitlm/issues/54
|
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://debian/pool/main/m/mitlm/mitlm_"
|
(uri (string-append "https://github.com/mitlm/mitlm/releases/"
|
||||||
version ".orig.tar.gz"))
|
"download/v" version "/"
|
||||||
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"12m09xxx8jbir9cnzzaysvni5sfijpfj96z1x1520qqvmpc8lmn7"))))
|
"09fv4fcpmw9g1j0zml0k5kk1lgjw2spr8gn51llbkaaph6v8d62a"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gfortran" ,gfortran)))
|
`(("gfortran" ,gfortran)))
|
||||||
|
|
Loading…
Reference in New Issue