Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# 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") ];