aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/uglifyjs.scm
blob: 1bd8bb632627c5050f72d81d7cd6dd6418225c60 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2021 Charles <charles.b.jackson@protonmail.com>
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages uglifyjs)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix git-download)
  #:use-module (guix build-system node)
  #:use-module (gnu packages node-xyz))

(define-public node-uglify-js
  (package
    (name "node-uglify-js")
    (version "3.14.2")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/mishoo/UglifyJS")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1jraqpwzga4vbgq3xcn08jcfc87pm6nik7vpxvxa4rfjvz70a6k7"))))
    (build-system node-build-system)
    (native-inputs
     (list node-acorn node-semver))
    (home-page "https://lisperator.net/uglifyjs/")
    (synopsis "JavaScript parser / mangler / compressor / beautifier toolkit")
    (description "UglifyJS is a JavaScript compressor/minifier written in
JavaScript.  It also contains tools that allow one to automate working with
JavaScript code: parser, code generator, compressor, mangler, scope analyzer,
tree walker, and tree transformer.")
      (license license:bsd-2)))

(define-public uglifyjs node-uglify-js)
: epson-inkjet-printer-escpr: Update to 1.7.22....Tobias Geerinckx-Rice 2022-09-13gnu: cups-pk-helper: Replace polkit with polkit-duktape....Maxim Cournoyer 2022-08-27gnu: Remove duplicate module import....Marius Bakke 2022-08-27Merge branch 'staging' into core-updatesMarius Bakke 2022-08-07gnu: cups-pk-helper: Add etc/dbus-1 compatibility symlink....Tobias Geerinckx-Rice 2022-08-07gnu: epson-inkjet-printer-escpr: Update to 1.7.21....Tobias Geerinckx-Rice 2022-08-07gnu: cups-pk-helper: Make references non-native....Tobias Geerinckx-Rice 2022-08-07gnu: cups-pk-helper: Update to 0.2.7....Tobias Geerinckx-Rice 2022-06-08Merge branch 'master' into core-updatesLudovic Courtès 2022-05-29gnu: cups-minimal, cups: Use G-expressions, new input style....Tobias Geerinckx-Rice 2022-05-29gnu: cups-filters: Update to 1.28.15....Tobias Geerinckx-Rice 2022-05-29gnu: hplip: Update to 3.22.4....Tobias Geerinckx-Rice 2022-05-29gnu: cups: Add Linux PAM support....Tobias Geerinckx-Rice 2022-05-29gnu: cups-minimal, cups: Update to 2.4.2....Tobias Geerinckx-Rice 2022-05-29gnu: foomatic-filters: Use project home page....Tobias Geerinckx-Rice 2022-05-22gnu: cups-filters: Enable driverless printing....Tobias Geerinckx-Rice 2022-05-22gnu: cups-filters: Remove input labels....Tobias Geerinckx-Rice 2022-05-22gnu: cups-filters: Use G-expressions....Tobias Geerinckx-Rice