diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-12-05 15:32:37 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-12-05 15:38:52 +0100 |
commit | d9544d91a6421da9e4d428536c6138bc5b01e1d3 (patch) | |
tree | 947779d9a4b00c135528632662424735bc33baf4 /guix | |
parent | b665a246194be0205f07ae03696e2c378a1bfd0d (diff) |
Revert "gnu: Properly move lisp libraries to lisp-xyz, uglify-js to javascript and stumpwm to wm."
This reverts commit ac1ee30f4f7f9d0ae2a655676b0e8b9eb90a35dd, which
still breaks ‘guix pull’.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/build-system/minify.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guix/build-system/minify.scm b/guix/build-system/minify.scm index 1418a71091..21d84a179a 100644 --- a/guix/build-system/minify.scm +++ b/guix/build-system/minify.scm @@ -44,8 +44,8 @@ (define (default-uglify-js) "Return the default package to minify JavaScript source files." ;; Lazily resolve the binding to avoid a circular dependency. - (let ((js-mod (resolve-interface '(gnu packages javascript)))) - (module-ref js-mod 'uglify-js))) + (let ((lisp-mod (resolve-interface '(gnu packages lisp)))) + (module-ref lisp-mod 'uglify-js))) (define* (lower name #:key source inputs native-inputs outputs system |