me
/
guix
Archived
1
0
Fork 0

gnu: mujs: Update to 1.2.0.

* gnu/packages/javascript.scm (mujs): Update to 1.2.0.
[source]: Add snippet to remove generated files.
Efraim Flashner 2022-05-09 23:10:02 +03:00
parent a2130bcf09
commit 0ec70c2c79
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 11 additions and 3 deletions

View File

@ -2,7 +2,7 @@
;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2017, 2019, 2020, 2022 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2017, 2018, 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017, 2018, 2019, 2020, 2022 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2021 Pierre Neidhardt <mail@ambrevar.xyz>
;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
@ -34,6 +34,7 @@
#:use-module (gnu packages readline)
#:use-module (gnu packages uglifyjs)
#:use-module (gnu packages web)
#:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
@ -681,7 +682,7 @@ external server.")
(define-public mujs
(package
(name "mujs")
(version "1.1.3")
(version "1.2.0")
(source
(origin
(method git-fetch)
@ -690,7 +691,14 @@ external server.")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0qizld89qw24i9v6i2j9cxjyqn425xbiqfp1b7qfrkyxqkn0byws"))))
(base32 "0kqw3xhjk4l2jar14a1f9b3m0xq0h2g3nc9m6hsdv7kf8jhfm83l"))
(snippet
#~(begin
(use-modules (guix build utils))
(for-each delete-file
(list "astnames.h"
"opnames.h"
"one.c"))))))
(build-system gnu-build-system)
(arguments
`(#:phases