remove_redundant_sequence_items: { options = { side_effects: true }; input: { (0, 1, eval)(); (0, 1, logThis)(); (0, 1, _decorators.logThis)(); } expect: { (0, eval)(); logThis(); (0, _decorators.logThis)(); } } dont_remove_this_binding_sequence: { options = { side_effects: true }; input: { (0, eval)(); (0, logThis)(); (0, _decorators.logThis)(); } expect: { (0, eval)(); logThis(); (0, _decorators.logThis)(); } } ndex : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/julia.scm
AgeCommit message (Expand)Author
2024-08-31gnu: julia: Add 'bash' input for 'wrap-program'....It is required for cross-compilation. * gnu/packages/julia.scm (julia)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I279650a3de44f03b2a4a23012ce8125f85ebbe0b Maxime Devos