aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/javascript.scm
diff options
context:
space:
mode:
authorAlexander Kabui2021-01-29 13:41:19 +0300
committerBonfaceKilz2021-01-31 12:59:42 +0300
commit3f8c84a33d18f932788c1132df35511d989879c1 (patch)
treea81ab9538feda2fa605e1a1ca1b1be799fabb77e /gn/packages/javascript.scm
parent4482bc32c6bba22aa4e27957410987c552dc2def (diff)
downloadguix-bioinformatics-3f8c84a33d18f932788c1132df35511d989879c1.tar.gz
gn: javascript: Replace javascript-zxcvbn-async with javascript-zxcvbn
Signed-off-by: BonfaceKilz <me@bonfacemunyoki.com>
Diffstat (limited to 'gn/packages/javascript.scm')
-rw-r--r--gn/packages/javascript.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/gn/packages/javascript.scm b/gn/packages/javascript.scm
index cef9393..e064c21 100644
--- a/gn/packages/javascript.scm
+++ b/gn/packages/javascript.scm
@@ -1758,20 +1758,20 @@ Popper will automatically put the tooltip in the right place near the button.")
Popper will automatically put the tooltip in the right place near the button.")
(license license:expat)))
-(define-public javascript-zxcvbn-async
+(define-public javascript-zxcvbn
(package
- (name "javascript-zxcvbn-async")
- (version "1.1.0")
+ (name "javascript-zxcvbn")
+ (version "4.4.2")
(source
(origin
(method url-fetch)
(uri (string-append
"https://cdnjs.cloudflare.com/ajax/libs/zxcvbn/"
version
- "/zxcvbn-async.min.js"))
+ "/zxcvbn.js"))
(file-name (string-append name ".js"))
(sha256
- (base32 "1igmapz0gb458mdf634ywmfg8m5xixsx6qc38hqw90alk30lsmk2"))))
+ (base32 "0jhpzvgr3aly7m5wmcz759ssx6kgm3rrh2ax5psrgws5s8azqxv6"))))
(build-system trivial-build-system)
(arguments
`(#:modules ((guix build utils))
@@ -1780,9 +1780,9 @@ Popper will automatically put the tooltip in the right place near the button.")
(use-modules (guix build utils))
(let* ((source (assoc-ref %build-inputs "source"))
(out (assoc-ref %outputs "out"))
- (targetdir (string-append out "/share/genenetwork2/javascript/zxcvbn-async")))
+ (targetdir (string-append out "/share/genenetwork2/javascript/zxcvbn")))
(mkdir-p targetdir)
- (copy-file source (string-append targetdir "/zxcvbn-async.min.js"))
+ (copy-file source (string-append targetdir "/zxcvbn.js"))
))))
(native-inputs `(("source" ,source)))
(home-page "https://www.usenix.org/conference/usenixsecurity16/technical-sessions/presentation/wheeler")