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)
d>gnu: debootstrap: Use pureos-archive-keyring....* gnu/packages/debian.scm (debootstrap): [arguments]: In 'patch-source' phase, use pureos-archive-keyring. [inputs]: Add pureos-archive-keyring. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> Change-Id: I8bf0a7db50c66dcf3541e5c7244350ff9523d921 Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Denis 'GNUtoo' Carikli 2024-04-02gnu: Add pureos-archive-keyring....* gnu/packages/debian.scm (pureos-archive-keyring): New variable. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> Change-Id: I80af4b15c7fe20dd40358d4f676a89903060bf07 Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Denis 'GNUtoo' Carikli 2024-02-12gnu: debootstrap: use trisquel-keyring....* gnu/packages/debian.scm (debootstrap): [arguments]: In 'patch-source' phase, use trisquel-keyring. [inputs]: Add trisquel-keyring, zstd. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I43d5543db4374b373dac65f65cfcef6a3df3b5bf Denis 'GNUtoo' Carikli 2024-02-12gnu: Add trisquel-keyring....* gnu/packages/debian.scm (trisquel-keyring): New variable. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Denis 'GNUtoo' Carikli 2024-01-16gnu: debian-ports-archive-keyring: Update to 2024.01.05....* gnu/packages/debian.scm (debian-ports-archive-keyring): Update to 2024.01.05. Change-Id: Ibaa279a91d9e39804eb5cc1bf759ca3afd69e962 Efraim Flashner 2024-01-16gnu: debootstrap: Update to 1.0.134....* gnu/packages/debian.scm (debootstrap): Update to 1.0.134. [arguments]: Remove obsolete substitution in 'patch-source phase. Change-Id: I2a50ae75a43c0970e3ef866e02c49d87094e14eb Efraim Flashner 2023-12-10gnu: ubuntu-keyring: Update to 2023.11.28.1....* gnu/packages/debian.scm (ubuntu-keyring): Update to 2023.11.28.1. [native-inputs]: Remove gzip; add xz. Change-Id: Id90acc7a58085321ac96b6ab520f54b20911a8c1 Efraim Flashner 2023-11-19gnu: dpkg: Update to 1.22.1....* gnu/packages/debian.scm (dpkg): Update to 1.22.1. Change-Id: Id5ac5a5c4a8dc9716fd5b05dd80c21b0edfe293f Tobias Geerinckx-Rice