about summary refs log tree commit diff
path: root/third_party/lisp/md5.nix
blob: 8c3e255f166b56d10a73681c42563b5ef3f2209d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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") ];
}