depot/third_party/tvl/third_party/lisp/chipz.nix
Default email a291c8690a Project import generated by Copybara.
GitOrigin-RevId: e6e19f3d81a982a62e1bba08f0b4f7fdc21b4ea0
2022-05-19 16:39:52 +02:00

26 lines
587 B
Nix

# Common Lisp library for decompressing deflate, zlib, gzip, and bzip2 data
{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.chipz;
in depot.nix.buildLisp.library {
name = "chipz";
deps = [ (depot.nix.buildLisp.bundled "asdf") ];
srcs = map (f: src + ("/" + f)) [
"chipz.asd"
"package.lisp"
"constants.lisp"
"conditions.lisp"
"dstate.lisp"
"types-and-tables.lisp"
"crc32.lisp"
"adler32.lisp"
"inflate-state.lisp"
"gzip.lisp"
"zlib.lisp"
"inflate.lisp"
"bzip2.lisp"
"decompress.lisp"
"stream.lisp"
];
}