feat(third_party/lisp): Add 'lisp-binary' package and dependencies

This commit is contained in:
Vincent Ambo 2020-01-22 21:40:37 +00:00
parent d6e473068e
commit 2fa7bf7bb0
3 changed files with 64 additions and 0 deletions

30
third_party/lisp/lisp-binary.nix vendored Normal file
View file

@ -0,0 +1,30 @@
# A library to easily read and write complex binary formats.
{ pkgs, ... }:
let src = pkgs.third_party.fetchFromGitHub {
owner = "j3pic";
repo = "lisp-binary";
rev = "1aefc8618b7734f68697ddf59bc93cb8522aa0bf";
sha256 = "1hflzn3mjp32jz9fxx9wayp3c3x58s77cgjfbs06nrynqkv0c6df";
};
in pkgs.nix.buildLisp.library {
name = "lisp-binary";
deps = with pkgs.third_party.lisp; [
cffi
quasiquote_2
moptilities
flexi-streams
closer-mop
];
srcs = map (f: src + ("/" + f)) [
"utils.lisp"
"integer.lisp"
"float.lisp"
"simple-bit-stream.lisp"
"reverse-stream.lisp"
"binary-1.lisp"
"binary-2.lisp"
];
}