blob: 8c3e255f166b56d10a73681c42563b5ef3f2209d (
plain) (
tree)
|
|
# MD5 hash implementation
{ depot, pkgs, ... }:
with depot.nix;
let src = with pkgs; srcOnly lispPackages.md5;
in buildLisp.library {
name = "md5";
deps = [
{
sbcl = buildLisp.bundled "sb-rotate-byte";
default = depot.third_party.lisp.flexi-streams;
}
];
srcs = [ (src + "/md5.lisp") ];
}
|