all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 9503ca03a95390a10a2252d16b24642c2a2b8e88 19119 bytes (raw)
name: gnu/packages/patches/clojure-native-executable.patch 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
 
From b17453777a81e605134bbc80dd19fd6e756aeed6 Mon Sep 17 00:00:00 2001
From: Alex Vong <alexvong1995@gmail.com>
Date: Sat, 25 Jun 2016 01:39:53 +0800
Subject: [PATCH] clojure: native executable

This patch wraps the main function generated by gcj to allow clojure to
be compiled as native executable. The executable should take half the
time to start, when compared to loading the clojure jar with java.
---
 args.hxx   |  60 +++++++++++++++++++++++++++++++
 base.hxx   | 116 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 macro.hxx  |  35 ++++++++++++++++++
 param.hxx  |  49 +++++++++++++++++++++++++
 string.hxx |  58 ++++++++++++++++++++++++++++++
 sys.hxx    | 118 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 wrap.cxx   | 115 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 7 files changed, 551 insertions(+)
 create mode 100644 args.hxx
 create mode 100644 base.hxx
 create mode 100644 macro.hxx
 create mode 100644 param.hxx
 create mode 100644 string.hxx
 create mode 100644 sys.hxx
 create mode 100644 wrap.cxx

diff --git a/args.hxx b/args.hxx
new file mode 100644
index 0000000..8fb421f
--- /dev/null
+++ b/args.hxx
@@ -0,0 +1,60 @@
+/* Struct for managing argument list
+   Copyright 2016 Alex Vong
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.  */
+
+
+#pragma once
+
+#include <algorithm>
+#include <iterator>
+#include <string.h>
+#include "base.hxx"
+
+
+struct Args
+{ int argc = 0;
+  char** argv = nullptr;
+
+  Args() {}
+  template <typename A>
+  Args(A ls)
+  {
+    argc = length(ls);
+    argv = new char*[argc + 1];
+    std::transform(std::begin(ls), std::end(ls),
+                   argv,
+                   lambda((auto str), return strdup(str.c_str())));
+    argv[argc] = nullptr;
+  }
+  ~Args()
+  {
+    std::for_each(argv, argv + argc,
+                  lambda((auto str), free(str)));
+    delete[] argv;
+  }
+  Args(Args& args) = delete;
+  Args& operator=(Args& args) = delete;
+  Args(Args&& args) = delete;
+  Args& operator=(Args&& args)
+  {
+    std::for_each(argv, argv + argc,
+                  lambda((auto ptr), free(ptr)));
+    delete[] argv;
+    argc = args.argc;
+    argv = args.argv;
+    args.argc = 0;
+    args.argv = nullptr;
+    return *this;
+  }
+};
diff --git a/base.hxx b/base.hxx
new file mode 100644
index 0000000..f7773bb
--- /dev/null
+++ b/base.hxx
@@ -0,0 +1,116 @@
+/* Basic utilities commonly found in scheme, with function composition operator
+   Copyright 2016 Alex Vong
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.  */
+
+
+#pragma once
+
+#include <iostream>
+#include <deque>
+#include <iterator>
+#include <numeric>
+#include <algorithm>
+#include <functional>
+#include "param.hxx"
+
+
+extern "C" int
+__real_main(int argc, char** argv);
+
+
+defun(display, (auto obj),
+      std::cout << obj);
+
+defun(display_error, (auto obj),
+      std::cerr << obj);
+
+defun(newline, (),
+      using namespace std::string_literals;
+      display("\n"s));
+
+template <typename B_to_C, typename A_to_B>
+defsubst(operator*, (B_to_C g, A_to_B f),
+         return lambda((auto x),
+                       return g(f(x))));
+
+defalias(cut, std::bind);
+
+defun(null_p, (auto ls),
+      return ls.empty());
+
+defun(car, (auto ls),
+      return ls[0]);
+
+defun(cdr, (auto ls),
+      ls.pop_front();
+      return ls);
+
+defun(drop, (auto ls, auto k),
+      ls.erase(std::begin(ls), std::begin(ls) + k);
+      return ls);
+
+defun(length, (auto ls),
+      return ls.size());
+
+defun(reverse, (auto ls),
+      std::reverse(std::begin(ls), std::end(ls));
+      return ls);
+
+defun(append, (auto ls1, auto... rest),
+      decltype(ls1) nil;
+      defun(append2, (auto ls1, auto ls2),
+            decltype(ls1) ls;
+            std::move(std::begin(ls2), std::end(ls2),
+                      std::back_inserter(ls1));
+            return ls1);
+      return param::fold_right(append2, nil, ls1, rest...));
+
+defun(fold, (auto proc, auto init, auto... ls),
+      using namespace std::placeholders;
+      auto ls2 = append(ls...);
+      return std::accumulate(std::begin(ls2), std::end(ls2),
+                             init,
+                             cut(proc, _2, _1)));
+
+defun(fold_right, (auto proc, auto init, auto... ls),
+      auto ls2 = append(ls...);
+      return fold(proc, init, reverse(ls2)));
+
+defun(concatenate, (auto ls_of_ls),
+      decltype(car(ls_of_ls)) nil;
+      return fold_right(append, nil, ls_of_ls));
+
+template <typename A_to_B, template <typename...> class List, typename A>
+defsubst(map, (A_to_B proc, List<A> ls),
+         List<decltype(proc(car(ls)))> ls2;
+         std::transform(std::begin(ls), std::end(ls),
+                        std::back_inserter(ls2),
+                        proc);
+         return ls2);
+
+defun(for_each, (auto proc, auto ls),
+      return std::for_each(std::begin(ls), std::end(ls), proc));
+
+defun(any, (auto pred, auto ls),
+      return std::any_of(std::begin(ls), std::end(ls), pred));
+
+template <typename A_to_Bool, template <typename...> class List, typename A>
+defsubst(partition, (A_to_Bool pred, List<A> ls),
+         List<A> ls1;
+         List<A> ls2;
+         std::partition_copy(std::begin(ls), std::end(ls),
+                             std::back_inserter(ls1),
+                             std::back_inserter(ls2),
+                             pred);
+         return List<List<A>>({ls1, ls2}));
diff --git a/macro.hxx b/macro.hxx
new file mode 100644
index 0000000..deb3b36
--- /dev/null
+++ b/macro.hxx
@@ -0,0 +1,35 @@
+/* Macros for reassembling the syntax of various lisps
+   Copyright 2016 Alex Vong
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.  */
+
+
+#pragma once
+
+#define lambda(arg_ls, body)                    \
+  [=] arg_ls {body;}
+
+#define define(id, val)                         \
+  const auto id = val
+
+#define defun(id, arg_ls, body)                 \
+  constexpr define(id, lambda(arg_ls, body))
+
+#define defsubst(id, arg_ls, body)                      \
+  constexpr auto id arg_ls {body;} struct swallow
+
+#define defalias(id, fun)                               \
+  defun(id, (auto ...args), return fun(args...))
+
+#define ns(id, ...)                             \
+  namespace id {__VA_ARGS__;} struct swallow
diff --git a/param.hxx b/param.hxx
new file mode 100644
index 0000000..9625016
--- /dev/null
+++ b/param.hxx
@@ -0,0 +1,49 @@
+/* Parameter pack (right-)folding over binary functions
+   Copyright 2016 Alex Vong
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.  */
+
+
+#pragma once
+
+#include "macro.hxx"
+
+
+ns(param,
+   ns(tmpl,
+      template <typename A_to_B_to_B, typename B>
+      defsubst(fold, (A_to_B_to_B proc, B init),
+               return init);
+      template <typename A_to_B_to_B, typename B, typename A>
+      defsubst(fold, (A_to_B_to_B proc, B init, A e),
+               return proc(e, init));
+      template <typename A_to_B_to_B, typename B, typename A, typename... As>
+      defsubst(fold, (A_to_B_to_B proc, B init, A e, As... es),
+               return fold(proc,
+                           proc(e,init),
+                           es...)));
+   defalias(fold, tmpl::fold);
+
+   ns(tmpl,
+      template <typename A_to_B_to_B, typename B>
+      defsubst(fold_right, (A_to_B_to_B proc, B init),
+               return init);
+      template <typename A_to_B_to_B, typename B, typename A>
+      defsubst(fold_right, (A_to_B_to_B proc, B init, A e),
+               return proc(e, init));
+      template <typename A_to_B_to_B, typename B, typename A, typename... As>
+      defsubst(fold_right, (A_to_B_to_B proc, B init, A e, As... es),
+               return proc(e, fold_right(proc,
+                                         init,
+                                         es...))));
+   defalias(fold_right, tmpl::fold_right));
diff --git a/string.hxx b/string.hxx
new file mode 100644
index 0000000..36116dd
--- /dev/null
+++ b/string.hxx
@@ -0,0 +1,58 @@
+/* String utilities commonly found in scheme, with string append operator
+   Copyright 2016 Alex Vong
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.  */
+
+
+#pragma once
+
+#include <string>
+#include <sstream>
+#include "base.hxx"
+
+
+template <typename String>
+defsubst(operator*, (String str1, String str2),
+         str1.append(str2);
+         return str1);
+
+ns(string,
+   defun(length, (auto str),
+         return str.length());
+
+   defun(eq_p, (auto str1, auto str2),
+         return str1 == str2);
+
+   defun(eq_any_p, (auto str, auto str_ls),
+         using namespace std::placeholders;
+         return any(cut(eq_p, str, _1), str_ls));
+
+   defun(prefix_p, (auto prefix, auto str),
+         return !str.compare(0, length(prefix), prefix));
+
+   defun(drop, (auto str, auto n),
+         return str.erase(0, n));
+
+   template <typename A, typename String, typename Char>
+   defsubst(split, (String str, Char delim),
+            String tok;
+            std::istringstream sstream(str);
+            A accum;
+            while (std::getline(sstream, tok, delim)) accum.push_back(tok);
+            return accum);
+
+   defun(contains, (auto str1, auto str2),
+         return str1.find(str2));
+
+   defun(contains_p, (auto str1, auto str2),
+         return contains(str1, str2) != std::string::npos));
diff --git a/sys.hxx b/sys.hxx
new file mode 100644
index 0000000..de698b5
--- /dev/null
+++ b/sys.hxx
@@ -0,0 +1,118 @@
+/* Structs for managing files desciptor and pipe, with utilities
+   Copyright 2016 Alex Vong
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.  */
+
+
+#pragma once
+
+#include <cerrno>
+#include <iostream>
+#include <fstream>
+#include <sstream>
+#include <string>
+#include <ext/stdio_filebuf.h>
+#include <algorithm>
+#include <system_error>
+#include <unistd.h>
+#include "base.hxx"
+
+
+ns(sys,
+   defun(error, (auto errnum, auto msg),
+         throw std::system_error(errnum,
+                                 std::system_category(),
+                                 msg)));
+
+
+namespace file_and_pipe
+{ using namespace std::string_literals;
+
+  struct File
+  { int fd = -1;
+
+    File() {}
+    File(int a_fd)
+    {
+      fd = a_fd;
+    }
+    ~File()
+    {
+      if (fd >= 0) close(fd);
+    }
+    File(File& file) = delete;
+    File& operator=(File& file) = delete;
+    File(File&& file)
+    {
+      fd = file.fd;
+      file.fd = -1;
+    }
+    File& operator=(File&& file)
+    {
+      fd = file.fd;
+      file.fd = -1;
+      return *this;
+    }
+  };
+
+
+  struct Pipe
+  { int pipefd[2];
+
+    Pipe() {if(pipe(pipefd)) sys::error(errno, "cannot create pipe"s);}
+    ~Pipe()
+    {
+      std::for_each(pipefd, pipefd + 2,
+                    lambda((auto fd), if (fd >= 0) close(fd)));
+    }
+    Pipe(Pipe& pipe) = delete;
+    Pipe& operator=(Pipe& pipe) = delete;
+    Pipe(Pipe&& pipe) = delete;
+    Pipe& operator=(Pipe&& pipe) = delete;
+  };
+
+
+  inline File operator>(File& file, Pipe& pipe)
+  { File file_sv(dup(file.fd));
+
+    if (file_sv.fd < 0) sys::error(errno, "cannot duplicate file descriptor"s);
+    if (dup2(pipe.pipefd[1], file.fd) < 0)
+      sys::error(errno, "cannot redirect file descriptor to pipe"s);
+
+    return file_sv;
+  }
+
+
+  inline void operator>(File& file, File& file_sv)
+  {
+    if (dup2(file_sv.fd, file.fd) < 0)
+      sys::error(errno, "cannot restore file descriptor"s);
+
+    file.fd = -1;
+  }
+}
+using namespace file_and_pipe;
+
+
+defun(read_from_pipe, (auto& pipe),
+      if (pipe.pipefd[1] >= 0)
+        {
+          close(pipe.pipefd[1]);
+          pipe.pipefd[1] = -1;
+        }
+
+      __gnu_cxx::stdio_filebuf<char> fstream(pipe.pipefd[0], std::ios::in);
+      std::istream istream(&fstream);
+      std::stringstream sstream;
+      sstream << istream.rdbuf();
+      return sstream.str());
diff --git a/wrap.cxx b/wrap.cxx
new file mode 100644
index 0000000..e3dde32
--- /dev/null
+++ b/wrap.cxx
@@ -0,0 +1,115 @@
+/* Wraps main function generated by gcj to allow compiled as native executable
+   Copyright 2016 Alex Vong
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.  */
+
+
+#include <cstdlib>
+#include <deque>
+#include <string>
+#include "base.hxx"
+#include "args.hxx"
+#include "string.hxx"
+#include "sys.hxx"
+
+#define ARGS_TYPE std::deque<std::string>
+
+
+Args ARGS;
+File STDOUT_FILE(STDOUT_FILENO);
+File STDERR_FILE(STDERR_FILENO);
+File STDOUT_FILE_SV;
+File STDERR_FILE_SV;
+Pipe STDOUT_PIPE;
+Pipe STDERR_PIPE;
+
+
+extern "C" int
+__wrap_main(int argc, char** argv)
+{ using namespace std::string_literals;
+  using namespace std::placeholders;
+
+  ARGS_TYPE args(argv, argv + argc);
+
+  define(subopt_prefix, "-Wi,"s);
+  define(subopt_p, cut(string::prefix_p, subopt_prefix, _1));
+  defun(remove_prefix, (auto prefix, auto str),
+        return string::drop(str, string::length(prefix)));
+  define(remove_subopt_prefix, cut(remove_prefix, subopt_prefix, _1));
+  defun(split_subopt, (auto str),
+        return string::split<ARGS_TYPE>(str, ','));
+  define(help_string_p, cut(string::eq_any_p, _1,
+                            ARGS_TYPE({"-h"s, "-?"s, "--help"s})));
+  defun(print_help, (auto prog_name),
+        display("Usage: "s *
+                prog_name *
+                " [gij-opt*] [init-opt*] [main-opt] [arg*]\n"s *
+
+                "\n"s *
+
+                "  Start a read–eval–print loop by default\n"s *
+
+                "\n"s *
+
+                "  gij options:\n"s *
+
+                "    -Wi,<op1>,<op2>...  "s *
+                "Pass comma-separated options on to gij\n"s *
+
+                "    -Wi,-?\n"s *
+
+                "    -Wi,--help          "s *
+                "Print help for gij, then exit\n"s));
+
+  define(prog_name, car(args));
+  define(rest_args, cdr(args));
+  define(opts, partition(subopt_p, cdr(args)));
+  define(subopts, opts[0]);
+  define(otheropts, opts[1]);
+  ARGS = Args(append(ARGS_TYPE({prog_name, "-noverify"s}),
+                     concatenate(map(split_subopt * remove_subopt_prefix,
+                                     subopts)),
+                     ARGS_TYPE({"clojure.main"s}),
+                     otheropts));
+
+  if(!null_p(otheropts)
+     && help_string_p(car(otheropts)))
+    {
+      STDOUT_FILE_SV = STDOUT_FILE > STDOUT_PIPE;
+      STDERR_FILE_SV = STDERR_FILE > STDERR_PIPE;
+      std::atexit(lambda((),
+                         STDOUT_FILE > STDOUT_FILE_SV;
+                         STDERR_FILE > STDERR_FILE_SV;
+
+                         define(stdout_str, read_from_pipe(STDOUT_PIPE));
+                         define(stderr_str, read_from_pipe(STDERR_PIPE));
+                         if (string::contains_p(stdout_str, "clojure.main"s))
+                           {
+                             print_help(decltype(prog_name)(ARGS.argv[0]));
+
+                             for_each(lambda((auto str),
+                                             display(str);
+                                             display("\n"s)),
+                                      drop(string::split<ARGS_TYPE>(stdout_str,
+                                                                    '\n'),
+                                           3));
+                           }
+                         else
+                           {
+                             display(stdout_str);
+                           }
+                         display_error(stderr_str)));
+    }
+
+  return __real_main(ARGS.argc, ARGS.argv);
+}
-- 
2.9.0


debug log:

solving 9503ca0 ...
found 9503ca0 in https://yhetil.org/guix/87r3b7gc4d.fsf@gmail.com/

applying [1/1] https://yhetil.org/guix/87r3b7gc4d.fsf@gmail.com/
diff --git a/gnu/packages/patches/clojure-native-executable.patch b/gnu/packages/patches/clojure-native-executable.patch
new file mode 100644
index 0000000..9503ca0

1:625: trailing whitespace.
-- 
Checking patch gnu/packages/patches/clojure-native-executable.patch...
1:627: new blank line at EOF.
+
Applied patch gnu/packages/patches/clojure-native-executable.patch cleanly.
warning: 2 lines add whitespace errors.

index at:
100644 9503ca03a95390a10a2252d16b24642c2a2b8e88	gnu/packages/patches/clojure-native-executable.patch

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.