diff options
author | Jelle Licht <jlicht@fsfe.org> | 2023-03-20 23:31:38 +0100 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2023-05-06 13:53:22 +0200 |
commit | 2c8c582803f87ac0690fabe44a380ee782ea894d (patch) | |
tree | fbc00e5cd2953fdd139567d65608d45cd4c06ea9 | |
parent | 8b4c901ac8aa07def4ad3ec872b93ba233f7d129 (diff) | |
download | guix-2c8c582803f87ac0690fabe44a380ee782ea894d.tar guix-2c8c582803f87ac0690fabe44a380ee782ea894d.tar.gz |
gnu: node-serialport: Avoid gyp rebuilds.
* gnu/packages/node-xyz.scm (node-serialport)[arguments]<phases>: Explicitly
disable gyp recompilation.
-rw-r--r-- | gnu/packages/node-xyz.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index b85507f52f..a9784dbf7a 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm @@ -1384,6 +1384,8 @@ after a (configurable) newline delimiter is received."))) (_ #t)) scripts-alist))) + (("gypfile" . _) + '("gypfile" . #f)) (other other)) pkg-meta-alist)))))))) |