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

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

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