summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2019-09-17 09:53:17 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2019-09-17 09:53:17 +0300
commite3a5e439eea400538d4575c06149e3c124d5c68f (patch)
tree762b94071676c941b330491352f5cb92a828b5fb
parentgnu: stumpwm-checkout: Update source url. (diff)
downloadguix-wigust-e3a5e439eea400538d4575c06149e3c124d5c68f.tar.gz
wigust: Add node-fixed.
* guix/wigust/packages/node.scm (node-fixed): New variable.
-rw-r--r--guix/wigust/packages/node.scm37
1 files changed, 37 insertions, 0 deletions
diff --git a/guix/wigust/packages/node.scm b/guix/wigust/packages/node.scm
new file mode 100644
index 0000000..735bf58
--- /dev/null
+++ b/guix/wigust/packages/node.scm
@@ -0,0 +1,37 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2019 Oleg Pykhalov <go.wigust@gmail.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 (wigust packages node)
+ #:use-module (guix packages)
+ #:use-module (guix derivations)
+ #:use-module (guix download)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages node))
+
+(define node-fixed
+ (package
+ (inherit node)
+ (substitute-keyword-arguments (package-arguments node)
+ ((#:phases phases)
+ `(modify-phases ,phases
+ (add-after 'unpack 'delete-failing-tests
+ (lambda _
+ ;; FIXME: These tests fail with openssl@1.1.1d.
+ (for-each delete-file
+ '("test/parallel/test-crypto-binary-default.js"
+ "test/parallel/test-crypto-dh.js")))))))))