de0f0164d2
Change-Id: I9f987dc25d77a829cc0716cbe4cb1b91c36de861 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3269 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
14 lines
262 B
Nix
14 lines
262 B
Nix
# 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
|
|
];
|
|
}
|