diff options
Diffstat (limited to 'third_party/lisp/md5.nix')
-rw-r--r-- | third_party/lisp/md5.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/third_party/lisp/md5.nix b/third_party/lisp/md5.nix index a789f7bc2af3..ef265d5b6e8f 100644 --- a/third_party/lisp/md5.nix +++ b/third_party/lisp/md5.nix @@ -11,6 +11,11 @@ let src = pkgs.fetchFromGitHub { }; in buildLisp.library { name = "md5"; - deps = [ (buildLisp.bundled "sb-rotate-byte") ]; + deps = [ + { + sbcl = buildLisp.bundled "sb-rotate-byte"; + default = depot.third_party.lisp.flexi-streams; + } + ]; srcs = [ (src + "/md5.lisp") ]; } |