blob: b82a490c9d7169113fd674c197185e15ddef5c78 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# 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"
];
}
|