about summary refs log tree commit diff
path: root/third_party/lisp/asdf-flv/default.nix
blob: e8ec4aa8f85cdf04b844ce7f83d03198628ec8ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Imported from https://github.com/didierverna/asdf-flv
{ depot, ... }:

with depot.nix;
buildLisp.library {
  name = "asdf-flv";
  deps = [ (buildLisp.bundled "asdf") ];

  srcs = [
    ./package.lisp
    ./asdf-flv.lisp
  ];
}