From 8bcc23f7094a19f37780652af5bf012ca8ba9de5 Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 22 Sep 2019 07:45:39 -0500 Subject: gn: Add javascript-underscore. * gn/packages/javascript.scm (javascript-underscore): New variable. --- gn/packages/javascript.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'gn/packages/javascript.scm') diff --git a/gn/packages/javascript.scm b/gn/packages/javascript.scm index 465259a..bc66f53 100644 --- a/gn/packages/javascript.scm +++ b/gn/packages/javascript.scm @@ -539,3 +539,37 @@ not natively support it.") (description "FileSaver.js is the solution to saving files on the client-side, and is perfect for web apps that generates files on the client.") (license license:expat))) + +(define-public javascript-underscore + (package + (name "javascript-underscore") + (version "1.9.1") ; June 1, 2018 + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jashkenas/underscore.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1f75wrln5kv5ihkbb9zwhyjqd9imwil801abhv36w09dkkabpjy5")))) + (build-system trivial-build-system) + (arguments + `(#:modules ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let* ((out (assoc-ref %outputs "out")) + (targetdir (string-append out "/share/genenetwork2/javascript/underscore")) + (source (assoc-ref %build-inputs "source"))) + (install-file (string-append source "/underscore.js") targetdir) + (install-file (string-append source "/underscore-min.js") targetdir) + (install-file (string-append source "/underscore-min.js.map") targetdir))))) + (native-inputs `(("source" ,source))) + (home-page "https://underscorejs.org") + (synopsis "Utility-belt library for JavaScript") + (description + "Underscore is a JavaScript library that provides a whole mess of useful +functional programming helpers without extending any built-in objects.") + (license license:expat))) -- cgit v1.2.3