2020-01-22 01:23:09 +01:00
|
|
|
# MD5 hash implementation
|
2021-04-10 02:13:18 +02:00
|
|
|
{ depot, pkgs, ... }:
|
2020-01-22 01:23:09 +01:00
|
|
|
|
2020-02-21 13:47:29 +01:00
|
|
|
with depot.nix;
|
2020-01-27 00:59:07 +01:00
|
|
|
|
2021-12-14 22:32:27 +01:00
|
|
|
let src = with pkgs; srcOnly lispPackages.md5;
|
2020-01-27 00:59:07 +01:00
|
|
|
in buildLisp.library {
|
2020-01-22 01:23:09 +01:00
|
|
|
name = "md5";
|
2021-08-09 02:47:07 +02:00
|
|
|
deps = [
|
|
|
|
{
|
|
|
|
sbcl = buildLisp.bundled "sb-rotate-byte";
|
|
|
|
default = depot.third_party.lisp.flexi-streams;
|
|
|
|
}
|
|
|
|
];
|
2020-01-22 01:23:09 +01:00
|
|
|
srcs = [ (src + "/md5.lisp") ];
|
|
|
|
}
|