about summary refs log tree commit diff
path: root/third_party/lisp/npg/default.nix
blob: af7ec53eaf934678144884187dc784b988223d62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright (C) 2021 by the TVL Authors
# SPDX-License-Identifier: LGPL-2.1-or-later
{ depot, pkgs, ... }:

depot.nix.buildLisp.library {
  name = "npg";

  srcs = [
    ./src/package.lisp
    ./src/common.lisp
    ./src/define.lisp
    ./src/parser.lisp
  ];
}