feat(third_party/lisp): Add derivation for asdf-flv

This commit is contained in:
Vincent Ambo 2020-01-17 17:52:27 +00:00
parent ad1de2a04f
commit 00902daa00

12
third_party/lisp/asdf-flv/default.nix vendored Normal file
View file

@ -0,0 +1,12 @@
# 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
];
}