gnu: js-respond: Don't use unstable-tarball.

* gnu/packages/javascript.scm (js-respond)[source]: Use 'git-fetch'.
This commit is contained in:
Efraim Flashner 2019-09-08 16:12:50 +03:00
parent 367d0833c3
commit 97f6004ca1
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -144,13 +144,14 @@ (define-public js-respond
(name "js-respond")
(version "1.4.2")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/scottjehl/Respond/"
"archive/" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/scottjehl/Respond")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0ds1ya2a185jp93mdn07159c2x8zczwi960ykrawpp62bwk2n93d"))))
"00xid731rirc7sdy1gc8qal3v9g0agr2qx15hm4x97l1lcbylyn2"))))
(build-system minify-build-system)
(arguments
`(#:javascript-files '("src/matchmedia.addListener.js"