GNU bug report logs -
#36602
[PATCH] Add node-build-system.
Previous Next
Reported by: Julien Lepiller <julien <at> lepiller.eu>
Date: Thu, 11 Jul 2019 16:48:01 UTC
Severity: normal
Tags: patch
Done: Julien Lepiller <julien <at> lepiller.eu>
Bug is archived. No further changes may be made.
Full log
Message #11 received at 36602 <at> debbugs.gnu.org (full text, mbox):
Hello!
Nice work! I wonder if this could be used for the ‘node-semver’ package
that arrived at about the same time: <https://issues.guix.gnu.org/issue/36599>.
Jelle Licht <jlicht <at> fsfe.org> skribis:
>> +(define* (install #:key outputs inputs global? #:allow-other-keys)
>> + "Install the node module to the output store item. MODULENAME defines
>> +under which name the module will be installed, GLOBAL? determines whether this
>> +is an npm global install."
>> + (let* ((out (assoc-ref outputs "out"))
>> + (src-dir (getcwd))
>> + (tgt-dir (string-append out "/lib"))
>> + (bin-dir (string-append out "/bin"))
>> + (modulename (string-append (assoc-ref (read-package-data) "name")))
>> + (data (read-package-data))
>> + (bin-conf (assoc-ref data "bin"))
>> + (dependencies (match (assoc-ref data "dependencies")
>> + ((@ deps ...) deps)
Note that ‘@’ here matches anything. Did you mean '@, which would match
the @ symbol?
>> + (#f #f))))
> It might be better to write out most of these
> names. I think we could also move `modulename' one line lower, so it can
> become `(modulename (assoc-ref data "name"))'.
I’m gratuitously nitpicking as well :-), but I think we should spell out
names in general, so I’d propose s/src-dir/source/, s/tgt-dir/target/,
etc.
https://www.gnu.org/software/guix/manual/en/html_node/Formatting-Code.html
Anyway, thanks for working on it!
Ludo’.
This bug report was last modified 5 years and 312 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.