tvl-depot/third_party/lisp/rfc2388.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
260 B
Nix
Raw Normal View History

# Implementation of RFC2388 (multipart/form-data)
{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.rfc2388;
in depot.nix.buildLisp.library {
name = "rfc2388";
srcs = map (f: src + ("/" + f)) [
"packages.lisp"
"rfc2388.lisp"
];
}