blob: 3e8843ef4dbd70dff9001232e3e78784069a1c4d (
plain) (
tree)
|
|
# Imported from https://github.com/didierverna/asdf-flv
{ pkgs, ... }:
pkgs.nix.buildLisp.library {
name = "asdf-flv";
deps = with pkgs.third_party.lisp; [ asdf ];
srcs = [
./package.lisp
./asdf-flv.lisp
];
}
|