about summary refs log blame commit diff
path: root/third_party/lisp/md5.nix
blob: 8c3e255f166b56d10a73681c42563b5ef3f2209d (plain) (tree)
1
2
3
4
5
6
7
8
                         
                     
 
               
 
                                              
                      
               





                                                     

                                 
# 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") ];
}