about summary refs log tree commit diff
path: root/third_party/lisp/quasiquote_2/default.nix
blob: 3febfca2b68d236f4c3367c7f1fc382c9e71ab5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Quasiquote more suitable for macros that define other macros
{ pkgs, ... }:

pkgs.nix.buildLisp.library {
  name = "quasiquote-2.0";

  deps = [
    pkgs.third_party.lisp.iterate
  ];

  srcs = [
    ./package.lisp
    ./quasiquote-2.0.lisp
    ./macros.lisp
    ./readers.lisp
  ];
}