gnu: js-strftime: Don't use unstable tarball.
* gnu/packages/javascript.scm (js-strftime)[source]: Use 'git-fetch'.master
parent
8a35e58a27
commit
16df291414
|
@ -265,13 +265,14 @@ provided by ES5. @code{JSONPath} is used to represent the links.")
|
||||||
(name "js-strftime")
|
(name "js-strftime")
|
||||||
(version "0.10.0")
|
(version "0.10.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append "https://github.com/samsonjs/strftime/"
|
(uri (git-reference
|
||||||
"archive/v" version ".tar.gz"))
|
(url"https://github.com/samsonjs/strftime")
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1iya43w7y26y2dp9l4d40bhjc4scb5a9mng5ng5c8hsqr82f1375"))))
|
"131nmlivazwxyba25kh9lda99749fq4xsyin6lzfalaaydviby4p"))))
|
||||||
(build-system minify-build-system)
|
(build-system minify-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:javascript-files '("strftime.js")))
|
`(#:javascript-files '("strftime.js")))
|
||||||
|
|
Reference in New Issue